Add an alias for 'git fetch'

Since 'gf' is used by git-flow, use 'gfe' instead.
This commit is contained in:
ChaYoung You 2014-09-11 20:19:13 +09:00
commit 288b4bf64a
No known key found for this signature in database
GPG key ID: 46D5FC2EE79FBC2D

View file

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