landingpage/commit-and-push.sh

7 lines
112 B
Bash
Executable File

git add *
read -p "Commit message: " commit_message
git commit -m "$commit_message"
git push -u origin master