Add a 'git fetch origin' alias -> 'gfeo'

This commit is contained in:
Marcos D. Sánchez 2013-09-28 13:26:32 -03:00
commit 19b0951707

View file

@ -7,6 +7,8 @@ alias gd='git diff'
compdef _git gd=git-diff
alias gdc='git diff --cached'
compdef _git gdc=git-diff
alias gfeo='git fetch origin'
compdef _git gfeo=git-fetch
alias gl='git pull'
compdef _git gl=git-pull
alias gup='git pull --rebase'