11 lines
171 B
Bash
Executable File
11 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git add .
|
|
git status
|
|
echo -n "Enter the Description for the Change: " [Minor Update]
|
|
read CHANGE_MSG
|
|
|
|
git commit -m "${CHANGE_MSG}"
|
|
git push origin main
|
|
exit
|