赞
踩
git init git add .
git ls-files | xargs wc -l
上面会显示每个文件的行数及文件名 最后会显示你项目代码总行数
如果只想看项目代码总行数使用命令
git ls-files | xargs cat | wc -l
如果只想看项目文件列表使用命令
git ls-files