1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

Fixed compdef alias to use 'gd' as shortcut.

This commit is contained in:
Jordan MacDonald 2012-01-20 13:07:03 -05:00
parent 730e029664
commit 49d44adb09

View file

@ -4,7 +4,7 @@ compdef g=git
alias gst='git status'
compdef _git gst=git-status
alias gd='git diff'
compdef _git diff=git-diff
compdef _git gd=git-diff
alias gl='git pull'
compdef _git gl=git-pull
alias gup='git fetch && git rebase'