autopush.sh 112 B

1234567
  1. #!/bin/bash
  2. echo Enter commit notes:
  3. read commitmsg
  4. git pull
  5. git add *
  6. git commit -m "$commitmsg"
  7. git push