Created
March 6, 2024 09:36
-
-
Save 0xAungkon/9a934cb4df29235bb96ead357beccce0 to your computer and use it in GitHub Desktop.
Git Auto-commit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import time | |
| while True: | |
| os.system("rm -rf ./nohup.out") | |
| os.system("git add .") | |
| os.system("git commit -m \"auto commit\"") | |
| os.system("git status") | |
| os.system("git push") | |
| time.sleep(60) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment