diff options
author | Árni Hermann Reynisson <arnihr@gmail.com> | 2012-11-20 15:01:39 +0000 |
---|---|---|
committer | Árni Hermann Reynisson <arnihr@gmail.com> | 2012-11-20 15:01:39 +0000 |
commit | 003b0da9e5b2b9f230296aeaedfc946579222d81 (patch) | |
tree | a0be24a98b361317a9402d8572ac7ef264e71bca | |
parent | c2ae9e09ca1f33ff1e13e629a0b2e6bdd19f83a9 (diff) | |
download | zsh-003b0da9e5b2b9f230296aeaedfc946579222d81.tar.gz zsh-003b0da9e5b2b9f230296aeaedfc946579222d81.tar.bz2 zsh-003b0da9e5b2b9f230296aeaedfc946579222d81.zip |
Use pull --rebase for 'gup' shortcut.
Instead of git fetch && git rebase.
-rw-r--r-- | plugins/git/git.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index d3d3f702a..adedea79e 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -5,7 +5,7 @@ alias gst='git status' compdef _git gst=git-status alias gl='git pull' compdef _git gl=git-pull -alias gup='git fetch && git rebase' +alias gup='git pull --rebase' compdef _git gup=git-fetch alias gp='git push' compdef _git gp=git-push |