refactor: improve error handling and messaging for git auto-commit

This commit is contained in:
Paul Gauthier 2024-09-04 08:52:48 -07:00 committed by Paul Gauthier (aider)
parent cef78282bd
commit 40d5880b44

View file

@ -1872,8 +1872,8 @@ class Coder:
self.io.tool_output("No changes made to git tracked files.") self.io.tool_output("No changes made to git tracked files.")
return self.gpt_prompts.files_content_gpt_no_edits return self.gpt_prompts.files_content_gpt_no_edits
except ANY_GIT_ERROR as err: except ANY_GIT_ERROR as err:
self.io.tool_error(f"Git error during auto-commit: {str(err)}") self.io.tool_error(f"Unable to commit: {str(err)}")
return None return
def show_auto_commit_outcome(self, res): def show_auto_commit_outcome(self, res):
commit_hash, commit_message = res commit_hash, commit_message = res