gitpush 678 B

12345678910111213141516171819202122232425262728293031
  1. #!/usr/bin/env bash
  2. if [ -f linux* ]; then
  3. echo "################################################"
  4. echo "Stopping the script!!"
  5. echo "Wait for the kernel update script to quit."
  6. echo "################################################"
  7. exit 0
  8. fi
  9. # Checking if I have the latest files from Notabug
  10. git pull
  11. #Below command will backup everything inside the project folder
  12. git add --all
  13. echo "###################################"
  14. echo "Write your commit comment!"
  15. echo "###################################"
  16. read input
  17. curtime=$(date)
  18. #git commit -m "$input on $curtime"
  19. git commit -m "$input"
  20. # Push the local snapshot to a remote destination
  21. git push -u origin master