Add support for remove remote branch

This commit is contained in:
Ilya Antipenko 2014-12-09 12:19:38 +02:00
commit b2647f1a10

View file

@ -15,6 +15,8 @@ alias gup='git pull --rebase'
compdef _git gup=git-fetch compdef _git gup=git-fetch
alias gp='git push' alias gp='git push'
compdef _git gp=git-push compdef _git gp=git-push
alias gp='git push --delete'
compdef _git gpd=git-push
alias gd='git diff' alias gd='git diff'
gdv() { git diff -w "$@" | view - } gdv() { git diff -w "$@" | view - }
compdef _git gdv=git-diff compdef _git gdv=git-diff