Created
February 6, 2015 20:15
-
-
Save blakewrege/4132ed21a7e6b2a6e4fb to your computer and use it in GitHub Desktop.
3 git commands in one
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
##Copy and paste into your .bashrc | |
##usage: lazygit "your message here" | |
function lazygit() { | |
git add . | |
git commit -a -m "$1" | |
git push | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment