Skip to content

Git 获取代码行数

Published: at 03:46 AMSuggest Changes

显示项目的所有文件列表及行数

git ls-files | xargs wc -l

只统计项目代码的总行数

git ls-files | xargs cat | wc -l

只查看项目文件列表

git ls-files

后记

转载来源

补充

也可以装一个 VSCode 插件,叫做 VS Code Counter,可以统计项目


Previous Post
JS 按位异或运算详解
Next Post
CSS 碰撞变色小球