@@ -1,5 +1,7 @@
-#/bin/bash
+#!/bin/bash
+echo Enter commit notes:
+read commitmsg
git pull
-git add -A
-git commit -m "auto update script executed"
+git add *
+git commit -m "$commitmsg"
git push