Completions are git subdommand-aware now

This commit is contained in:
Jakub Nawalaniec 2011-04-03 15:43:39 +02:00 committed by Robby Russell
parent 57f55e69ed
commit 2e9492969b

View File

@ -2,15 +2,16 @@
alias g='git' alias g='git'
compdef g=git compdef g=git
alias gst='git status' alias gst='git status'
compdef gst=git compdef _git gst=git-status
alias gl='git pull' alias gl='git pull'
compdef gl=git compdef _git gl=git-pull
alias gup='git fetch && git rebase' alias gup='git fetch && git rebase'
compdef gup=git compdef gup=git
alias gp='git push' alias gp='git push'
compdef gp=git compdef _git gp=git-push
alias gd='git diff | mate' alias gd='git diff | mate'
compdef gd=git # WTF is mate??
compdef _git gd=git-diff
alias gdv='git diff -w "$@" | vim -R -' alias gdv='git diff -w "$@" | vim -R -'
compdef gdv=git compdef gdv=git
alias gc='git commit -v' alias gc='git commit -v'
@ -18,20 +19,21 @@ compdef gc=git
alias gca='git commit -v -a' alias gca='git commit -v -a'
compdef gca=git compdef gca=git
alias gco='git checkout' alias gco='git checkout'
compdef gco=git compdef _git gco=git-checkout
alias gb='git branch' alias gb='git branch'
compdef gb=git compdef _git gb=git-branch
alias gba='git branch -a' alias gba='git branch -a'
compdef gba=git compdef gba=git
alias gcount='git shortlog -sn' alias gcount='git shortlog -sn'
compdef gcount=git compdef gcount=git
alias gcp='git cherry-pick' alias gcp='git cherry-pick'
compdef gcp=git compdef _git gcp=git-cherry-pick
alias glg='git log --stat --max-count=5' alias glg='git log --stat --max-count=5'
compdef glg=git compdef _git glg=git-log
# Git and svn mix # Git and svn mix
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk' alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'
compdef git-svn-dcommit-push=git
# #
# Will return the current branch name # Will return the current branch name