Created
November 16, 2011 17:57
-
-
Save clooth/1370808 to your computer and use it in GitHub Desktop.
quick and simple git aliases
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 | |
alias gs='git status' | |
alias go='git checkout' | |
alias gadd='git add -p' | |
alias gi='git commit' | |
alias gd='git diff' | |
alias gb='git branch' | |
alias gl='git log' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment