gpt4 book ai didi

git log --follow,显示所有提交,包括 merge

转载 作者:IT王子 更新时间:2023-10-29 01:27:27 26 4
gpt4 key购买 nike

我想 git log --follow file.ext 但显示所有提交,包括 merge 。

尝试了 no-max-parents,但没有帮助。

最佳答案

The -m will do the trick for you, log -m is for get into the merges.

git log -m --oneline --full-history --follow file.ext

这应该跟在 Merges [-m] 中的文件之后。

而且我假设您的目标是使用 --min-parents=2 而不是 no-max-parents--min-parents=2--merged 相同,因为它将返回不止一个父项的提交。

您总是可以添加一些额外的标志以更友好的方式显示结果:
git log -m --name-only --oneline --follow file.ext。它将使用提交的 SHA-1 以及消息显示结果

关于git log --follow,显示所有提交,包括 merge ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30443906/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com