Created
April 29, 2018 09:05
-
-
Save gate3/eee4ed61953062ce0c04c472c02189d9 to your computer and use it in GitHub Desktop.
Git push that requests user input for commit message
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 . && read -p "Input a message: " message && git commit -m "${message}" && git push |
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
[Desktop Entry] | |
Exec=git add . && read -p "Input a message: " message && git commit -m "${message}" && git push | |
Terminal=true | |
Type=Application | |
Name[en_US]=push to git | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment