Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
b1821a24
Unverified
Commit
b1821a24
authored
Oct 10, 2023
by
Adam Johnson
Committed by
GitHub
Oct 10, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(git): restore showing patch in `gsts` (#11951)
parent
38db3e16
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
README.md
plugins/git/README.md
+1
-1
git.plugin.zsh
plugins/git/git.plugin.zsh
+1
-1
No files found.
plugins/git/README.md
View file @
b1821a24
...
@@ -185,7 +185,7 @@ plugins=(... git)
...
@@ -185,7 +185,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
`
|
|
`gsts`
|
`git stash show
--patch`
|
|
`gst`
|
`git status`
|
|
`gst`
|
`git status`
|
|
`gss`
|
`git status --short`
|
|
`gss`
|
`git status --short`
|
|
`gsb`
|
`git status --short -b`
|
|
`gsb`
|
`git status --short -b`
|
...
...
plugins/git/git.plugin.zsh
View file @
b1821a24
...
@@ -349,7 +349,7 @@ alias gstp='git stash pop'
...
@@ -349,7 +349,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'
alias
gsts
=
'git stash show
--patch
'
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'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment