upload.sh (270B)
1 #!/bin/bash 2 git add . --all 3 echo "Commit:" 4 read commit 5 git commit -m "$commit" 6 git remote add origin https://mtrnord:b5b2678ba4947697251a3e9c5235442283adb440@github.com/RpicmsTeam/RPICMS.git 7 git push -f -u origin develop 8 git remote remove origin 9 echo "Fertig!" 10 sleep 10