如何查找跨存储库对文件执行的提交数

时间:2015-04-25 13:07:26

标签: git github version-control git-svn git-commit

我正在观看视频“将您的代码视为犯罪现场”。

http://www.infoq.com/presentations/code-bugs-legacy-pitfalls

为了知道代码的复杂性,他说要找到每个文件的提交次数。这意味着这些文件需要更多的维护。我如何找到像这个人在这个视频中完成的热点。

该视频的时间是13:20 - 14:20。

Treat Your code as crime scene

Treat you code as crime scene 2

1 个答案:

答案 0 :(得分:2)

关注“How to count number of commits per file pathname by author in a Git repository?”,您可以从:

开始
git log --name-only --pretty=format: | sort | uniq -c | sort

排序列表将帮助您发现很多提交的文件。