10 lines
159 B
Bash
10 lines
159 B
Bash
#Test Script
|
|
|
|
clear
|
|
git status
|
|
git add --all :/
|
|
IFS= read -r -p "Enter commit message: " com
|
|
git commit -m "${com}"
|
|
git push nmd master
|
|
git push github master
|