美文网首页Git
Git show commits diff between tw

Git show commits diff between tw

作者: JaedenKil | 来源:发表于2019-09-27 16:01 被阅读0次

Say there is a master branch, create a new dev branch.
To list the commits which are in dev but not in master:

git log master..dev --oneline

git log --name-status release..test
Show the commits that are in the "test" branch but not yet in the "release" branch, along with the list of paths each commit modifies.

相关文章

网友评论

    本文标题:Git show commits diff between tw

    本文链接:https://www.haomeiwen.com/subject/lgbguctx.html