devshell.sh 323 B

12345678910111213
  1. #!/bin/bash
  2. # cd /data/project/web/tingbang
  3. # git pull
  4. # cd /data/project/web/tingbang/htmldev/dashboard
  5. # npm run build
  6. # ssh root@81.68.157.237
  7. git pull
  8. git status
  9. read -p "Enter your commit_message,please: " commit_message
  10. git add .
  11. git commit -m ${commit_message}
  12. git push origin 管理后台
  13. echo '代码提交成功'