Created
June 8, 2017 15:18
-
-
Save tomtt/6a48d2452523045711c44ff446944058 to your computer and use it in GitHub Desktop.
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 gb='git branch' | |
alias gba='git branch -a' | |
alias gc='git commit -v' | |
alias gci='git commit' | |
alias gcia='git commit --amend -c HEAD' | |
alias gco='git checkout' | |
alias gcp='git cherry-pick' | |
alias gd='git diff' | |
alias gdc='git diff --cached --word-diff' | |
alias gdf='git diff --word-diff' | |
alias gg='git grep' | |
alias glb='git log --decorate --oneline' | |
alias glg='git log --decorate --graph --oneline' | |
alias gld='git log -p --' | |
alias gls='git log --stat' | |
alias gll='git log --pretty=format:"%x1b[33m%h %Cgreen%m%Creset %s %Cgreen(%an)%Creset" -n 10' | |
alias gllr='gll refs/remotes/origin/HEAD...HEAD;echo " ^ not yet pushed";gll refs/remotes/origin/HEAD' | |
alias gllt='git log --pretty=format:"%x1b[33m%h %Cgreen%m %x1b[33m%ai %Creset %s %Cgreen(%an)%Creset" -n 10' | |
alias gpl='git pull' | |
alias gm='git merge' | |
alias gps='git push' | |
alias grom='git rebase origin/master' | |
alias gsh='git stash' | |
alias gst='git status' | |
alias gf='git fetch' | |
alias grb='git rebase' | |
alias gri='git rebase --interactive' | |
alias giturl='git config --get remote.`git config --get branch.master.remote`.url' | |
alias gff='git flow feature' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment