Created
June 6, 2014 04:04
-
-
Save EvanLovely/b40f668b851c7202f4a4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Commit Helper | |
| gitco() { | |
| git status --short --branch --untracked-file=all | |
| echo -n "Commit Message: " | |
| read msg | |
| git add --all :/ | |
| git commit -m "$msg" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment