diff options
author | Hakan Ensari <hakan.ensari@papercavalier.com> | 2010-12-20 12:57:23 -0300 |
---|---|---|
committer | Hakan Ensari <hakan.ensari@papercavalier.com> | 2010-12-20 12:57:23 -0300 |
commit | 1a8ceef514bc86f882adce1834bfab168afcb4d1 (patch) | |
tree | 86ab317184cc21e4d23aa9e49e49ca625ee947fe /plugins | |
parent | 8edf417375fa8468008fbea78b7532125ea6bd83 (diff) | |
download | zsh-1a8ceef514bc86f882adce1834bfab168afcb4d1.tar.gz zsh-1a8ceef514bc86f882adce1834bfab168afcb4d1.tar.bz2 zsh-1a8ceef514bc86f882adce1834bfab168afcb4d1.zip |
Typo
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 09b1f16cc..71a62819b 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -27,7 +27,7 @@ function current_branch() { echo ${ref#refs/heads/} } -# these aliases take advangate of the previous function +# these aliases take advantage of the previous function alias ggpull='git pull origin $(current_branch)' alias ggpush='git push origin $(current_branch)' -alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'
\ No newline at end of file +alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)' |