如何找到所有分支还没有合并到开发分支
How to find all branch still not merge to develop branch
我们正在使用 git-flow 来管理源代码。
有时,我们想检查哪些分支尚未合并开发。
用sourcetree,find on commit graph好像头晕!
还有其他方法吗?
你可以使用下面的git命令来查找所有没有合并到develop
的分支
git branch --no-merged develop
我们正在使用 git-flow 来管理源代码。 有时,我们想检查哪些分支尚未合并开发。 用sourcetree,find on commit graph好像头晕! 还有其他方法吗?
你可以使用下面的git命令来查找所有没有合并到develop
的分支git branch --no-merged develop