对于单个文件,我可以将它合并到git中当前分支的时间吗?
我想知道合并文件的时间(我只能看到git log
中的提交时间,谁做了合并,可能还有同一合并中的其他文件。
答案 0 :(得分:1)
git log --first-parent --merges -1 -- path/to/it
并获取其他文件
git rev-list --first-parent --merges -1 @ -- path/to/it \
| git show -m --name-only --stdin
或
git show -m --name-only $(git rev-list --first-parent --merges -1 @ -- path/to/it)