diff --git a/auto_push.sh b/auto_push.sh deleted file mode 100755 index 06d36f4..0000000 --- a/auto_push.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -while inotifywait -r -e modify,create,delete .; do - git add . - git commit -m "Auto-commit on file change" - git push -uf origin main -done -