This commit is contained in:
Pablo Lalloni 2013-12-03 00:11:42 -08:00
commit 083813511c
3 changed files with 67 additions and 0 deletions

View file

@ -14,8 +14,13 @@ compdef _git gup=git-fetch
alias gp='git push'
compdef _git gp=git-push
alias gd='git diff'
compdef _git gd=git-diff
alias gds='git diff --staged'
compdef _git gds=git-diff
gdv() { git diff -w "$@" | view - }
compdef _git gdv=git-diff
alias gds='git diff --staged'
compdef _git gds=git-diff
alias gc='git commit -v'
compdef _git gc=git-commit
alias gc!='git commit -v --amend'