summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorncanceill <nicolas.canceill@ens-cachan.org>2015-06-11 11:04:54 +0200
committerncanceill <nicolas.canceill@ens-cachan.org>2015-06-11 11:04:54 +0200
commita570f4b7f332d6a1f7b25e1d5fd9a3954e379065 (patch)
tree71ab69b32edd1e4f5cf3f21f546258be2bfe3b98 /plugins
parent4224c2a1af2a1b99c14ef81012af321c39856cf5 (diff)
downloadzsh-a570f4b7f332d6a1f7b25e1d5fd9a3954e379065.tar.gz
zsh-a570f4b7f332d6a1f7b25e1d5fd9a3954e379065.tar.bz2
zsh-a570f4b7f332d6a1f7b25e1d5fd9a3954e379065.zip
git plugin: bring back olg gg aliases
by popular demand, see #3972
Diffstat (limited to 'plugins')
-rw-r--r--plugins/git/git.plugin.zsh6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh
index e42e09688..28227dcb1 100644
--- a/plugins/git/git.plugin.zsh
+++ b/plugins/git/git.plugin.zsh
@@ -104,11 +104,15 @@ ggl() {
git pull origin "${b:=$1}"
}
compdef _git ggl=git-checkout
+alias ggpull='ggl'
+compdef _git ggpull=git-checkout
ggp() {
[[ "$#" != 1 ]] && b="$(current_branch)"
git push origin "${b:=$1}"
}
compdef _git ggp=git-checkout
+alias ggpush='ggp'
+compdef _git ggpush=git-checkout
ggpnp() {
ggl "$1" && ggp "$1"
}
@@ -119,6 +123,8 @@ ggu() {
git pull --rebase origin "${b:=$1}"
}
compdef _git ggu=git-checkout
+alias ggpur='ggu'
+compdef _git ggpur=git-checkout
alias gignore='git update-index --assume-unchanged'
alias gignored='git ls-files -v | grep "^[[:lower:]]"'