Created
December 9, 2011 13:09
-
-
Save rafbm/1451461 to your computer and use it in GitHub Desktop.
Git Aliases for the Minimalist
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
alias glog="git log --oneline --decorate" | |
alias gstatus="git status -sbu" | |
alias gdiff="git diff" | |
alias gadd="git add -p" | |
alias gcommit="git commit -v" | |
alias grebase="git rebase -i" | |
alias gpull="git pull --rebase origin" | |
alias gpush="git push origin" | |
alias gstash="git stash save" | |
alias gpop="git stash pop" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment