fix(git): remove `--text` from `gsts` (#11897)

master
Adam Johnson 3 years ago committed by GitHub
parent a17789eede
commit aaa74964a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      plugins/git/README.md
  2. 2
      plugins/git/git.plugin.zsh

@ -183,7 +183,7 @@ plugins=(... git)
| `gstp` | `git stash pop` |
| `gsta` | On Git >= 2.13: `git stash push` |
| `gsta` | On Git < 2.13: `git stash save` |
| `gsts` | `git stash show --text` |
| `gsts` | `git stash show` |
| `gst` | `git status` |
| `gss` | `git status --short` |
| `gsb` | `git status --short -b` |

@ -331,7 +331,7 @@ alias gstp='git stash pop'
is-at-least 2.13 "$git_version" \
&& alias gsta='git stash push' \
|| alias gsta='git stash save'
alias gsts='git stash show --text'
alias gsts='git stash show'
alias gst='git status'
alias gss='git status --short'
alias gsb='git status --short --branch'

Loading…
Cancel
Save