Show all stashes in git log

后端 未结 7 2039
一个人的身影
一个人的身影 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"

提交回复
热议问题