From 38dfd6f4f96110d0e9bb5fcd9fcea044f744b3c5 Mon Sep 17 00:00:00 2001 From: Andrew Grigorev Date: Sat, 12 Apr 2025 20:07:33 +0300 Subject: [PATCH] docs: clarify --attribute-co-authored-by precedence --- aider/args.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aider/args.py b/aider/args.py index 7aaf10f2a..dfa84b6c2 100644 --- a/aider/args.py +++ b/aider/args.py @@ -458,7 +458,11 @@ def get_parser(default_config_files, git_root): "--attribute-co-authored-by", action=argparse.BooleanOptionalAction, default=False, - help="Attribute aider edits using the Co-authored-by trailer in the commit message (default: False).", + help=( + "Attribute aider edits using the Co-authored-by trailer in the commit message" + " (default: False). If True, this takes precedence over default --attribute-author and" + " --attribute-committer behavior unless they are explicitly set to True." + ), ) group.add_argument( "--git-commit-verify",