|
|
|
|
|
by __david__
5263 days ago
|
|
A small nit about git stashes: they aren't stored in a special linear branch. Each stash is a little branch off of wherever you were when you created the stash. The only trick is that the stash commits are named something weird so that "git stash list" can find them and list them. You can check this yourself: git show stash@{0}
Look where it says "WIP on {branch-name}: {hash}". That {hash} will be one of the hashes in the "Merge" header near the top of the commit.You can also see this visually with "gitk --all". |
|