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.
我想在此时为 python 文件测量开发分支尖端中每个开发人员的代码行数。我怎样才能做到这一点?
更像这样:将每个开发人员的计数器初始化为 0。对于项目中的每个 python 文件,归咎于每一行。增加相应显影剂的计数器。
我不希望整体添加删除数字。仅存在于分支的 HEAD 中。
试试这个 bash 单线:
find -name '*.py' -type f -exec git annotate -e -- {} \; | cut -f2 -d $'\t' | grep -oP '[^<>]{2,}' | sort | uniq -c
它输出的不是姓名,而是电子邮件。