You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 27, 2026. It is now read-only.
parser=argparse.ArgumentParser(description="Run git diff between two commits and analyze with LLM.")
102
-
parser.add_argument("-o", "--output_file", required=True, help="The file to output the combined diff.")
103
+
parser.add_argument("-o", "--output_file", help="The file to output the combined diff.")
103
104
parser.add_argument("-c1", "--commit1", help="The first commit hash.")
104
105
parser.add_argument("-c2", "--commit2", help="The second commit hash.")
105
106
parser.add_argument("-b", "--branch", help="Compare the latest commit on the current branch to the latest common commit with another branch (e.g., master).")
0 commit comments