We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41c07db commit c7ad33fCopy full SHA for c7ad33f
1 file changed
main.py
@@ -147,25 +147,8 @@ def main():
147
148
git = GitManager(Config.BASE_DIR)
149
150
- console.print("\n[bold cyan]Git Status Before[/bold cyan]")
151
console.print(git.status())
152
153
- git.add()
154
-
155
- console.print("\n[bold green]Files staged successfully.[/bold green]")
156
157
- console.print("\n[bold cyan]Git Status After[/bold cyan]")
158
- console.print(git.status())
159
160
- git.commit(
161
- "test: verify automatic git commit"
162
- )
163
164
- console.print("[green]Commit successful![/green]")
165
- git.push()
166
167
- console.print("[green]Push successful![/green]")
168
169
+
170
if __name__ == "__main__":
171
main()
0 commit comments