Created
April 17, 2010 14:03
-
-
Save raine/369575 to your computer and use it in GitHub Desktop.
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 gdc='git diff --cached' | |
alias gst='git status -s' # git >1.7.0 | |
alias glr='git pull --rebase' | |
alias gl='git pull' | |
alias gp='git push' | |
alias gd='git diff' | |
alias gc='git commit -v' | |
alias gca='git commit -v -a' | |
alias gb='git branch' | |
alias gba='git branch -a' | |
alias gap='git add --patch' | |
alias glg="git log --pretty=format:'%Cred%h%Creset%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative" | |
alias gsa='git stash apply' | |
alias gs='git stash' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment