Skip to content

Instantly share code, notes, and snippets.

@0xAungkon
Created March 6, 2024 09:36
Show Gist options
  • Select an option

  • Save 0xAungkon/9a934cb4df29235bb96ead357beccce0 to your computer and use it in GitHub Desktop.

Select an option

Save 0xAungkon/9a934cb4df29235bb96ead357beccce0 to your computer and use it in GitHub Desktop.
Git Auto-commit
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