赞
踩
git ls-files | xargs cat | wc -l
上面git命令统计当前项目工程总的代码行数。
-------
下面的git命令单独细分每个文件的代码行数,相当于把上面命令细化:
git ls-files | xargs wc -l