We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1052b36 commit c9465c2Copy full SHA for c9465c2
2 files changed
README.md
@@ -22,8 +22,6 @@ ollama run gemma3:4b
22
pip install ollama
23
```
24
25
-
26
27
### Usage
28
29
Place the `auto_commit.py` file in the root directory of your project.
auto_commit.py
@@ -90,6 +90,7 @@ def git_commit_everything(message):
90
91
def main():
92
commit_single_file = True if (len(sys.argv) > 1 and sys.argv[1] == "single_file") else False
93
+ print(f"commit_single_file {commit_single_file}")
94
files = get_changed_files()
95
if not files:
96
print("No changes detected.")
0 commit comments