Created
December 8, 2010 17:44
-
-
Save davidmfoley/733617 to your computer and use it in GitHub Desktop.
.profile: git aliases
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
alias gs='git status' | |
alias gf='git fetch' | |
alias gm='git merge' | |
alias gmom='git merge origin/master' | |
alias gr='git rebase' | |
alias grom='git rebase origin/master' | |
alias grc='git rebase --continue' | |
alias grpo='git remote prune origin' | |
alias gru='git remote update --prune' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment