We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 017e0e3 commit 00e035eCopy full SHA for 00e035e
1 file changed
agentstack/main.py
@@ -17,6 +17,7 @@
17
from agentstack.telemetry import track_cli_command, update_telemetry
18
from agentstack.utils import get_version, term_color
19
from agentstack import generation
20
+from agentstack import repo
21
from agentstack.update import check_for_updates
22
23
@@ -163,6 +164,10 @@ def _main():
163
164
# Set the debug flag
165
conf.set_debug(args.debug)
166
167
+ # --no-git flag disables automatic git commits
168
+ if args.no_git:
169
+ repo.dont_track_changes()
170
+
171
# Handle version
172
if args.version:
173
log.info(f"AgentStack CLI version: {get_version()}")
0 commit comments