Last active
June 8, 2023 13:39
-
-
Save goodylili/103456a2358797036767dd47809febd9 to your computer and use it in GitHub Desktop.
Helper file for pushing code to github with a commit message input
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git add . | |
echo -n "🔊 What's the commit message 👉 " | |
read response | |
git commit -m "$response" | |
git push origin main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment