I'd like to know if it is possible to extract a single file or diff of a file from a git stash without popping the stash changeset off.
Might anyone be able to provide some suggestions/ideas about this?
|
|
|
In git stash manpage you can read that (in "Discussion" section, just after "Options" description):
So you can treat stash (e.g.
Explanation:
should also work (see git rev-parse manpage for explanation of Likewise, you can use git checkout to check a single file out of the stash:
or to save it under another filename:
(note that here <full filename> is full pathname of a file relative to top directory of a project (think: relative to |
|||||||||||||||||||
|
|
If you use With this done, you can |
|||
|
|
|
You can get the diff for a stash with " |
|||
|
|
|
The simplest concept to understand, although maybe not the best, is you have three files changed and you want to stash one file. If you do When you want to unstash that file run do a |
|||
|
|