feat: add option to disable git commit signing

This commit is contained in:
Bede Carroll 2025-05-11 18:35:01 -07:00 committed by Bede Carroll (aider)
parent 2c4a126093
commit 3a7efb27b1
No known key found for this signature in database

View file

@ -471,6 +471,12 @@ def get_parser(default_config_files, git_root):
default=False,
help="Enable/disable git pre-commit hooks with --no-verify (default: False)",
)
group.add_argument(
"--git-commit-no-sign",
action=argparse.BooleanOptionalAction,
default=False,
help="Disable git signing with --no-gpg-sign (default: False)",
)
group.add_argument(
"--commit",
action="store_true",