소스 검색

Added new autopush

TC pushbot 5 1 년 전
부모
커밋
e6d5a2bc90
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      autopush.sh

+ 5 - 3
autopush.sh

@@ -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