summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authormapc <musikmichael@web.de>2012-05-29 01:07:36 +0200
committermapc <musikmichael@web.de>2012-05-29 14:32:49 +0200
commit3dd3c1f4158365b98e0754de9f0c1cbcb33d026c (patch)
tree650ccc682bad72b9419fb92c5df78ecec539766d /plugins
parent1120f973054836eeb53750f57d69fbec41a340dc (diff)
downloadzsh-3dd3c1f4158365b98e0754de9f0c1cbcb33d026c.tar.gz
zsh-3dd3c1f4158365b98e0754de9f0c1cbcb33d026c.tar.bz2
zsh-3dd3c1f4158365b98e0754de9f0c1cbcb33d026c.zip
Add aliases for git-remote: gr...
Diffstat (limited to 'plugins')
-rw-r--r--plugins/git/git.plugin.zsh12
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh
index e1d682508..11808f8e0 100644
--- a/plugins/git/git.plugin.zsh
+++ b/plugins/git/git.plugin.zsh
@@ -18,6 +18,18 @@ compdef _git gca=git-commit
alias gco='git checkout'
compdef _git gco=git-checkout
alias gcm='git checkout master'
+alias gr='git remote'
+compdef _git gr=git-remote
+alias grv='git remote -v'
+compdef _git grv=git-remote
+alias grmv='git remote rename'
+compdef _git grmv=git-remote
+alias grrm='git remote remove'
+compdef _git grrm=git-remote
+alias grset='git remote set-url'
+compdef _git grset=git-remote
+alias grup='git remote update'
+compdef _git grset=git-remote
alias gb='git branch'
compdef _git gb=git-branch
alias gba='git branch -a'