mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-06 20:54:59 +00:00
feat: add option to disable git commit signing
This commit is contained in:
parent
2c4a126093
commit
3a7efb27b1
1 changed files with 6 additions and 0 deletions
|
@ -471,6 +471,12 @@ def get_parser(default_config_files, git_root):
|
||||||
default=False,
|
default=False,
|
||||||
help="Enable/disable git pre-commit hooks with --no-verify (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(
|
group.add_argument(
|
||||||
"--commit",
|
"--commit",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue