10 lines
110 B
Bash
Executable File
10 lines
110 B
Bash
Executable File
#Test Script
|
|
|
|
clear
|
|
git status
|
|
git add --all
|
|
echo "Enter commit message"
|
|
read COM
|
|
git commit -m $COM
|
|
git push
|