From 15806aa6ab0cb3b128a2c4df5a892ba8185215b0 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 25 Jun 2025 11:33:40 -0700 Subject: [PATCH] feat: Enable co-authored-by by default Co-authored-by: aider (gemini/gemini-2.5-pro) --- aider/args.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/args.py b/aider/args.py index fe35e2c1b..0e1b13c42 100644 --- a/aider/args.py +++ b/aider/args.py @@ -481,10 +481,10 @@ def get_parser(default_config_files, git_root): group.add_argument( "--attribute-co-authored-by", action=argparse.BooleanOptionalAction, - default=False, + default=True, 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" + " (default: True). If True, this takes precedence over default --attribute-author and" " --attribute-committer behavior unless they are explicitly set to True." ), )