Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法可以找出何时(在哪个提交或合并中)将文件添加到分支?特别是,从实验特性分支到掌握。
git log <branch> -- <file>应该做的伎俩...
git log <branch> -- <file>
您可以使用
git log --first-parent -- <file>
列出沿主分支修改该文件的提交。列出的最后一个是将文件引入主分支的提交。
这确实取决于在主(例如master)分支上进行的合并以从其他分支中提取更改,而不是相反。
master