I would like to see all stashes in git log output. Does anyone know if there is a way to do that?
git log
Edit: I want to log all commits. I use the command
Full command:
git log --oneline --graph --all $(git stash list --format="%H")
Where list of heads of stashes:
git stash list --format="%H"