Merge pull request #198 from Masa-Shin/add-git-stash-show-tip

Add a tip to view what's in a stash
This commit is contained in:
hemanth.hm 2021-05-04 15:09:36 -07:00 committed by GitHub
commit 474306e30e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -58,6 +58,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
* [Saving current state with message](#saving-current-state-with-message)
* [Saving current state of all files (ignored, untracked, and tracked)](#saving-current-state-of-all-files-ignored-untracked-and-tracked)
* [Show list of all saved stashes](#show-list-of-all-saved-stashes)
* [Show the contents of any stash in patch form](#show-the-contents-of-any-stash-in-patch-form)
* [Apply any stash without deleting from the stashed list](#apply-any-stash-without-deleting-from-the-stashed-list)
* [Apply last stashed state and delete it from stashed list](#apply-last-stashed-state-and-delete-it-from-stashed-list)
* [Delete all stored stashes](#delete-all-stored-stashes)
@ -510,6 +511,11 @@ git stash push --all
git stash list
```
## Show the contents of any stash in patch form
```sh
git stash show -p <stash@{n}>
```
## Apply any stash without deleting from the stashed list
```sh
git stash apply <stash@{n}>

View File

@ -152,6 +152,9 @@
"title": "Show list of all saved stashes",
"tip": "git stash list"
}, {
"title": "Show the contents of any stash in patch form",
"tip": "git stash show -p <stash@{n}>"
}, {
"title": "Apply any stash without deleting from the stashed list",
"tip": "git stash apply <stash@{n}>"
}, {