This commit is contained in:
ben
2026-08-03 12:12:36 +02:00
parent 32001408bd
commit e806cd7e51
2 changed files with 15 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
cd ~/Desktop/calender || exit
git add .
read -p "commit msg: " COMMITMSG
git commit -m "$COMMITMSG"
git push
cd ~