如何做Git日志只看到合并到主分支?
在我的工作过程中,我需要向我的服务器管理员提供文件列表。 该列表来自我的工作分支(分支A)并入主分支。
所以我将分支A合并到分支主控中,然后部署主控。
现在我可以用git log
做的最好的是以下内容,但是这个列表还包含其他提交(不仅仅是我正在寻找的合并):
git log -m --name-only --author=[NAME]
所以基本上我需要检索合并Branch A
到Master Branch
的文件列表
用cli命令可以吗?
使用git log --merges --author
缩小它,找出你想要的提交然后尝试
git diff --name-only ${MERGE_SHA}^1..${MERGE_SHA}
链接地址: http://www.djcxy.com/p/26049.html
上一篇: How to do Git Log see only merges to master branch?
下一篇: How to know if latest commit to master has been pushed to the remote?