Last active
June 30, 2019 16:29
-
-
Save 5car1z/c9af258fd1f9f328c83c to your computer and use it in GitHub Desktop.
Git Aliases -- 13/10/2015
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 (sorted alphabetically with some inculsive functions) | |
# Adapted from oh-my-zsh git alias plugin. "compdef" is a Z shell autocompletion function, disabled throughout where applicable. | |
alias g='git' | |
alias ga='git add' | |
alias gaa='git add --all' | |
alias gapa='git add --patch' | |
alias gb='git branch' | |
alias gba='git branch -a' | |
alias gbda='git branch --merged | command grep -vE "^(\*|\s*master\s*$)" | command xargs -n 1 git branch -d' | |
alias gbl='git blame -b -w' | |
alias gbnm='git branch --no-merged' | |
alias gbr='git branch --remote' | |
alias gbs='git bisect' | |
alias gbsb='git bisect bad' | |
alias gbsg='git bisect good' | |
alias gbsr='git bisect reset' | |
alias gbss='git bisect start' | |
alias gc='git commit -v' | |
alias gc!='git commit -v --amend' | |
alias gca='git commit -v -a' | |
alias gca!='git commit -v -a --amend' | |
alias gcan!='git commit -v -a -s --no-edit --amend' | |
alias gcam='git commit -a -m' | |
alias gcb='git checkout -b' | |
alias gcf='git config --list' | |
alias gcl='git clone --recursive' | |
alias gclean='git clean -fd' | |
alias gpristine='git reset --hard && git clean -dfx' | |
alias gcm='git checkout master' | |
alias gcmsg='git commit -m' | |
alias gco='git checkout' | |
alias gcount='git shortlog -sn' | |
#compdef gcount=git | |
alias gcp='git cherry-pick' | |
alias gcs='git commit -S' | |
alias gd='git diff' | |
alias gdca='git diff --cached' | |
alias gdct='git describe --tags `git rev-list --tags --max-count=1`' | |
alias gdt='git diff-tree --no-commit-id --name-only -r' | |
function gdv() { | |
git diff -w "$@" | view - | |
} | |
#compdef _git gdv=git-diff | |
alias gdw='git diff --word-diff' | |
alias gf='git fetch' | |
alias gfa='git fetch --all --prune' | |
function gfg() { | |
git ls-files | grep $@ | |
} | |
#compdef gfg=grep | |
alias gfo='git fetch origin' | |
alias gg='git gui citool' | |
alias gga='git gui citool --amend' | |
function ggf() { | |
[[ "$#" != 1 ]] && local b="$(current_branch)" | |
git push --force origin "${b:=$1}" | |
} | |
#compdef _git ggf=git-checkout | |
function ggl() { | |
if [[ "$#" != 0 ]] && [[ "$#" != 1 ]]; then | |
git pull origin "${*}" | |
else | |
[[ "$#" == 0 ]] && local b="$(current_branch)" | |
git pull origin "${b:=$1}" | |
fi | |
} | |
#compdef _git ggl=git-checkout | |
alias ggpull='git pull origin $(current_branch)' | |
#compdef _git ggpull=git-checkout | |
function ggp() { | |
if [[ "$#" != 0 ]] && [[ "$#" != 1 ]]; then | |
git push origin "${*}" | |
else | |
[[ "$#" == 0 ]] && local b="$(current_branch)" | |
git push origin "${b:=$1}" | |
fi | |
} | |
#compdef _git ggp=git-checkout | |
alias ggpush='git push origin $(current_branch)' | |
#compdef _git ggpush=git-checkout | |
function ggpnp() { | |
if [[ "$#" == 0 ]]; then | |
ggl && ggp | |
else | |
ggl "${*}" && ggp "${*}" | |
fi | |
} | |
#compdef _git ggpnp=git-checkout | |
alias ggsup='git branch --set-upstream-to=origin/$(current_branch)' | |
function ggu() { | |
[[ "$#" != 1 ]] && local b="$(current_branch)" | |
git pull --rebase origin "${b:=$1}" | |
} | |
#compdef _git ggu=git-checkout | |
alias ggpur='ggu' | |
#compdef _git ggpur=git-checkout | |
alias gignore='git update-index --assume-unchanged' | |
alias gignored='git ls-files -v | grep "^[[:lower:]]"' | |
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk' | |
#compdef git-svn-dcommit-push=git | |
alias gk='\gitk --all --branches' | |
#compdef _git gk='gitk' | |
alias gke='\gitk --all $(git log -g --pretty=format:%h)' | |
#compdef _git gke='gitk' | |
alias gl='git pull' | |
alias glg='git log --stat --color' | |
alias glgp='git log --stat --color -p' | |
alias glgg='git log --graph --color' | |
alias glgga='git log --graph --decorate --all' | |
alias glgm='git log --graph --max-count=10' | |
alias glo='git log --oneline --decorate --color' | |
alias glol="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" | |
alias glola="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --all" | |
alias glog='git log --oneline --decorate --color --graph' | |
alias glp="_git_log_prettily" | |
#compdef _git glp=git-log | |
alias gm='git merge' | |
alias gmom='git merge origin/master' | |
alias gmt='git mergetool --no-prompt' | |
alias gmtvim='git mergetool --no-prompt --tool=vimdiff' | |
alias gmum='git merge upstream/master' | |
alias gp='git push' | |
alias gpd='git push --dry-run' | |
alias gpoat='git push origin --all && git push origin --tags' | |
#compdef _git gpoat=git-push | |
alias gpu='git push upstream' | |
alias gpv='git push -v' | |
alias gr='git remote' | |
alias gra='git remote add' | |
alias grb='git rebase' | |
alias grba='git rebase --abort' | |
alias grbc='git rebase --continue' | |
alias grbi='git rebase -i' | |
alias grbm='git rebase master' | |
alias grbs='git rebase --skip' | |
alias grh='git reset HEAD' | |
alias grhh='git reset HEAD --hard' | |
alias grmv='git remote rename' | |
alias grrm='git remote remove' | |
alias grset='git remote set-url' | |
alias grt='cd $(git rev-parse --show-toplevel || echo ".")' | |
alias gru='git reset --' | |
alias grup='git remote update' | |
alias grv='git remote -v' | |
alias gsb='git status -sb' | |
alias gsd='git svn dcommit' | |
alias gsi='git submodule init' | |
alias gsps='git show --pretty=short --show-signature' | |
alias gsr='git svn rebase' | |
alias gss='git status -s' | |
alias gst='git status' | |
alias gsta='git stash' | |
alias gstaa='git stash apply' | |
alias gstd='git stash drop' | |
alias gstl='git stash list' | |
alias gstp='git stash pop' | |
alias gsts='git stash show --text' | |
alias gsu='git submodule update' | |
alias gts='git tag -s' | |
alias gtv='git tag | sort -V' | |
alias gunignore='git update-index --no-assume-unchanged' | |
alias gunwip='git log -n 1 | grep -q -c "\-\-wip\-\-" && git reset HEAD~1' | |
alias gup='git pull --rebase' | |
alias gupv='git pull --rebase -v' | |
alias glum='git pull upstream master' | |
alias gvt='git verify-tag' | |
alias gwch='git whatchanged -p --abbrev-commit --pretty=medium' | |
alias gwip='git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit -m "--wip--"' | |
# Git completion for some of the above aliases. | |
__git_complete g __git_main | |
__git_complete ga _git_add | |
__git_complete gb _git_branch | |
__git_complete gc _git_commit | |
__git_complete gcl _git_clone | |
__git_complete gco _git_checkout | |
__git_complete gd _git_diff | |
__git_complete gl _git_pull | |
__git_complete glg _git_log | |
__git_complete gm _git_merge | |
__git_complete gp _git_push | |
__git_complete gsps _git_show |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment