diff options
author | Marc Cornellà <marc.cornella@live.com> | 2019-04-09 18:35:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-09 18:35:09 +0200 |
commit | b31106b3414f8b62589f25c25f6de6f921ee2efe (patch) | |
tree | 0788736910655d1649975baa7626838ad756498a /plugins | |
parent | 35dc26a2c091e90de1274bd4b9993e403d1c6642 (diff) | |
download | zsh-b31106b3414f8b62589f25c25f6de6f921ee2efe.tar.gz zsh-b31106b3414f8b62589f25c25f6de6f921ee2efe.tar.bz2 zsh-b31106b3414f8b62589f25c25f6de6f921ee2efe.zip |
git: minor syntax fix
Diffstat (limited to 'plugins')
-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 344419f1e..ef4697906 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -242,7 +242,7 @@ alias gst='git status' # use the default stash push on git 2.13 and newer [[ "$(git --version 2>/dev/null)" =~ '^git version ([0-9]+.[0-9]+)' && "$match" -ge '2.13' ]] \ - && alias gsta='git stash push' + && alias gsta='git stash push' \ || alias gsta='git stash save' alias gstaa='git stash apply' |