Created
June 18, 2011 23:35
-
-
Save rsertelon/1033595 to your computer and use it in GitHub Desktop.
My Bash Aliases for git
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 gs='git status' | |
alias gst='git stash' | |
alias glola='git lola' | |
alias gpush='git push' | |
alias gpull='git pull' | |
alias grebase='git rebase' | |
alias gbranch='git branch' | |
alias grm='git rm' | |
alias gadd='git add' | |
alias gco='git checkout' | |
alias gci='git commit' | |
alias grst='git reset' | |
alias grvt='git revert' | |
alias gmerge='git merge' | |
alias gprom='git pull --rebase origin master' | |
alias gdiff='git diff' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment