0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

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

This commit is contained in:
Adam Johnson 2023-09-26 08:18:54 +01:00 committed by GitHub
parent a17789eede
commit aaa74964a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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` |

View file

@ -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'