bergerjac / gitextensions

This fork of GitExtensions is primarily focused on creating an interactive view of git's common objects.
http://code.google.com/p/gitextensions
GNU General Public License v3.0
1 stars 0 forks source link

Go to stash #30

Closed jbialobr closed 6 years ago

jbialobr commented 11 years ago

Revision grid contains only the top most stash. So we can navigate only to it. I couldn't figure out how to get all stashes commits from git log command output.

bergerjac commented 11 years ago

git rev-list --walk-reflogs stash OR git stash list --pretty=format:"%H"

should both print the SHA-1's of all stashes