Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 60c573f

Browse files
committed
Add a print with the number of files committed
1 parent dc977a8 commit 60c573f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

aicodebot/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ def commit(verbose, max_tokens, yes):
113113
if yes or click.confirm("Do you want to commit the changes?"):
114114
# Commit the changes using the temporary file for the commit message
115115
exec_and_get_output(["git", "commit", "-a", "-F", temp_file_name])
116+
console.print(f"✅ {len(files)} files committed.")
116117

117118
# Delete the temporary file
118119
Path.unlink(temp_file_name)

0 commit comments

Comments
 (0)