9 lines
120 B
Bash
Executable File
9 lines
120 B
Bash
Executable File
#Test Script
|
|
|
|
clear
|
|
git status
|
|
git add --all
|
|
IFS= read -r -p "Enter commit message: " com
|
|
git commit -m "$com"
|
|
git push
|