Files
ForgeCraft/push.sh
Mohammad-Ali Minaie 9f1f8e4f91 modified push script
2017-04-01 21:27:50 -04:00

11 lines
204 B
Bash

#Test Script
clear
git status
git add --all :/
IFS= read -r -p "Enter commit message: " com
git commit -m "${com}"
IFS= read -r -p "Enter Branch name: " com1
git push nmd ${com1}
git push github ${com1}