Git : List all unmerged changes in git

后端 未结 3 780
余生分开走
余生分开走 2020-12-22 16:37

Creating a branch for various topics, and not regularly deleting them when I don\'t need them any more, I have now ended up with about 50 branches ;)

I tried deletin

3条回答
  •  庸人自扰
    2020-12-22 17:16

    To list branches with commits not merged into master:

    git branch --no-merged master
    

    To list the relevant commits:

    git cherry -v master 
    

提交回复
热议问题