Skip to content

Commit

Permalink
fix(git): remove --text from gsts (ohmyzsh#11897)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchainz committed Sep 26, 2023
1 parent a17789e commit aaa7496
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/git/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
2 changes: 1 addition & 1 deletion plugins/git/git.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit aaa7496

Please sign in to comment.