Show all stashes in git log

后端 未结 7 2042
一个人的身影
一个人的身影 2021-01-31 07:27

I would like to see all stashes in git log output. Does anyone know if there is a way to do that?

Edit: I want to log all commits. I use the command

相关标签:
7条回答
  • 2021-01-31 08:20

    Full command:

    git log --oneline --graph --all $(git stash list --format="%H")

    Where list of heads of stashes:

    git stash list --format="%H"

    0 讨论(0)
提交回复
热议问题