mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
fix(git): remove --text
from gsts
(#11897)
This commit is contained in:
parent
a17789eede
commit
aaa74964a8
2 changed files with 2 additions and 2 deletions
|
@ -183,7 +183,7 @@ plugins=(... git)
|
||||||
| `gstp` | `git stash pop` |
|
| `gstp` | `git stash pop` |
|
||||||
| `gsta` | On Git >= 2.13: `git stash push` |
|
| `gsta` | On Git >= 2.13: `git stash push` |
|
||||||
| `gsta` | On Git < 2.13: `git stash save` |
|
| `gsta` | On Git < 2.13: `git stash save` |
|
||||||
| `gsts` | `git stash show --text` |
|
| `gsts` | `git stash show` |
|
||||||
| `gst` | `git status` |
|
| `gst` | `git status` |
|
||||||
| `gss` | `git status --short` |
|
| `gss` | `git status --short` |
|
||||||
| `gsb` | `git status --short -b` |
|
| `gsb` | `git status --short -b` |
|
||||||
|
|
|
@ -331,7 +331,7 @@ alias gstp='git stash pop'
|
||||||
is-at-least 2.13 "$git_version" \
|
is-at-least 2.13 "$git_version" \
|
||||||
&& alias gsta='git stash push' \
|
&& alias gsta='git stash push' \
|
||||||
|| alias gsta='git stash save'
|
|| alias gsta='git stash save'
|
||||||
alias gsts='git stash show --text'
|
alias gsts='git stash show'
|
||||||
alias gst='git status'
|
alias gst='git status'
|
||||||
alias gss='git status --short'
|
alias gss='git status --short'
|
||||||
alias gsb='git status --short --branch'
|
alias gsb='git status --short --branch'
|
||||||
|
|
Loading…
Reference in a new issue