Is there a way I can view the contents of the current stash in sublime merge?
View stash
OdatNurd
#2
Git represents a stash
internally as a commit, so you should be able to view the contents of the stash the same as a regular commit
. You can click on the stash in the commit tree to see the changes the stash introduces on the code at the point where it was stashed.
You can also double-click a commit
to view the contents to get a view that shows you the changed files on the left if you want to view the changes to specific files:
0 Likes