Josh Brunton
Josh Brunton

Reputation: 527

"git log --all" - show multiple stashes

While using git, I noticed that my git GUI client (Git Extensions) shows all stashes I have if "show unrelated histories" is enabled - see below screenshot.

Screenshot of multiple stashes being shown simultaneously in the tree in Git Extensions

However, when looking at "git log" (git log --oneline --all --graph), only stash@{0} is visible, listed as refs/stash (see below)

A screenshot of the output of "git log --oneline --all --graph". Notably, the first (oldest) stash is not visible, which differs from the screenshot of Git Extensions above.

Can I configure git-log to show all stashes, not just the stash at the top of the stack?

Upvotes: 1

Views: 52

Answers (0)

Related Questions