mirror of
https://gitlab.com/skysthelimit.dev/selenite.git
synced 2025-06-15 18:12:08 -05:00
7 lines
203 B
Bash
7 lines
203 B
Bash
read -p "Make sure everything is saved - click enter to continue"
|
|
read -p 'Commit Message: ' commitmsg
|
|
echo "git add ."
|
|
git add .
|
|
echo "commit and push"
|
|
git commit -m "$commitmsg"
|
|
git push -u origin main |