git.sh 238 B

1234567
  1. #!/bin/bash
  2. git add .
  3. echo "--------------------------git add . 成功"
  4. git commit -m "$0"
  5. echo "--------------------------git commit -m 'x' 成功"
  6. git push origin shenzhen
  7. echo "--------------------------git push origin shenzhen 成功"