fix: Remove redundant message when no changes were made

This commit is contained in:
Paul Gauthier 2024-09-20 12:14:52 -07:00 committed by Paul Gauthier (aider)
parent 88eaf8cf1d
commit d94c1c0e1f

View file

@ -1897,8 +1897,6 @@ class Coder:
return
if self.commit_before_message[-1] != self.repo.get_head_commit_sha():
self.io.tool_output("You can use /undo to undo and discard each aider commit.")
else:
self.io.tool_output("No changes made to git tracked files.")
def dirty_commit(self):
if not self.need_commit_before_edits: