Avoid double commits

This commit is contained in:
Jon Michael Aanes 2025-04-13 15:34:53 +02:00
parent 59166b6d8c
commit 28253e680c

View File

@ -108,7 +108,6 @@ def process_issue(args, tmpdirname: Path, branch_name: str, issue_description: s
run_cmd(["git", "checkout", "-b", branch_name], tmpdirname)
run_cmd(create_aider_command(issue_description), tmpdirname)
run_cmd(["git", "add", "."], tmpdirname)
run_cmd(["git", "commit", "-m", f"Apply aider for issue {issue_number}"], tmpdirname)
run_cmd(["git", "push", "origin", branch_name], tmpdirname)
def main():