Added an option to prefix commit messages with 'aider: '.

This commit is contained in:
Paul Gauthier (aider) 2024-06-27 10:21:25 -07:00 committed by Paul Gauthier
parent 9c214e0faf
commit ec682fd683
2 changed files with 8 additions and 0 deletions

View file

@ -345,6 +345,12 @@ def get_parser(default_config_files, git_root):
default=True,
help="Attribute aider commits in the git committer name (default: True)",
)
group.add_argument(
"--attribute-commit-message",
action=argparse.BooleanOptionalAction,
default=False,
help="Prefix commit messages with 'aider: ' (default: False)",
)
group.add_argument(
"--dry-run",
action=argparse.BooleanOptionalAction,