How to do Git Log see only merges to master branch?

后端 未结 2 1795
醉话见心
醉话见心 2020-12-14 00:32

In my work process I need to provide a list of files to my server admin. The list comes from the merge of my working branch (Branch A) into Master branch.

So I merge

相关标签:
2条回答
  • 2020-12-14 00:44

    Narrow it down using git log --merges --author to figure out the commit you want and then try

    git diff --name-only ${MERGE_SHA}^1..${MERGE_SHA}
    
    0 讨论(0)
  • 2020-12-14 00:51

    I find it useful to narrow the path to first parent in order to ignore "update branch" merges.

    Looks like this for me:

    git log r2.8.7-2018-09-04..HEAD --merges --first-parent

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