From 9c214e0faf9ccbab96a610e763f14396b46541a0 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 27 Jun 2024 10:21:04 -0700 Subject: [PATCH] Implemented option to attribute commit messages in GitRepo class. --- aider/repo.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aider/repo.py b/aider/repo.py index 0a755a1ac..6e3465697 100644 --- a/aider/repo.py +++ b/aider/repo.py @@ -25,12 +25,14 @@ class GitRepo: models=None, attribute_author=True, attribute_committer=True, + attribute_commit_message=False, ): self.io = io self.models = models self.attribute_author = attribute_author self.attribute_committer = attribute_committer + self.attribute_commit_message = attribute_commit_message if git_dname: check_fnames = [git_dname]