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 存储库中有一个大型提交,它重命名了很多文件并重组了目录布局。同时,源文件中的注释也有很大的变化。现在我想找出哪个文件在哪里结束。
我曾尝试像这样使用 git log :
git log -B -M50% -C50% -w --summary -1 -l 10000 .
这有点帮助,但对于包含许多注释的文件,它不会检测到重命名。为此,我必须将相似度降低到 20% 或更低,这会产生很多误报。
现在,有没有办法告诉 git 在计算相似度指数之前忽略评论?