Created
October 2, 2015 02:01
-
-
Save aijaz/74b5bd739401ce794578 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
# GIT aliases | |
alias gl='git --no-pager log --graph --all --pretty="%C(auto)%h%Creset %C(blue)%cd%Creset %C(auto)%d%Creset %s" --date=local -20' | |
alias glp='git lp' | |
alias glpp='git lpp' | |
alias gs='git status -s' | |
alias gsp='git status' | |
alias co='git checkout' | |
alias ci='git commit -a' | |
alias gb='git branch' | |
alias gm='git merge --no-ff -m "Merge Commit"' | |
alias gmf='git merge' | |
alias grmbr='git rmbr' | |
alias grmrbr='git rmrbr' | |
alias gd='git diff' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment