From f255ef9e375afbb166e638175d9e451eb90ae7dd Mon Sep 17 00:00:00 2001 From: root Date: Mon, 7 Apr 2025 09:54:14 +0000 Subject: [PATCH] Auto-commit on file change --- auto_push.sh | 7 ------- 1 file changed, 7 deletions(-) delete mode 100755 auto_push.sh 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 -