Created
June 19, 2012 02:21
-
-
Save xwmx/2951957 to your computer and use it in GitHub Desktop.
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
| #========================================================================== | |
| # Git aliases | |
| #========================================================================== | |
| alias g='git' | |
| alias gb='git branch' | |
| alias gba='git branch -a' | |
| alias gstat='git status' | |
| alias gc='git commit -v' | |
| alias gca='git commit -v -a' | |
| alias gd='git diff | mate' | |
| alias gl='git pull' | |
| alias gp='git push' | |
| alias glog="git log --all --graph --pretty=format:'%Cred%h%Creset -%C(magenta)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment