Browse Source

git: minor syntax fix

Marc Cornellà 6 years ago
parent
commit
b31106b341
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/git/git.plugin.zsh

+ 1 - 1
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'