Git统计项目代码行数
2023/8/13...小于 1 分钟
Git统计项目代码行数
只统计项目代码的总行数
git ls-files | xargs cat | wc -l只查看项目文件列表
git ls-files统计python代码的行数
git ls-files | grep '.*\.py' | xargs cat | wc -l更新日志
2024/5/29 02:44
查看所有更新日志
0c018-于fb24e-于03b25-于392a5-于
git ls-files | xargs cat | wc -lgit ls-filesgit ls-files | grep '.*\.py' | xargs cat | wc -l0c018-Openresty和lua脚本实战于 fb24e-git config core.ignorecase false于 03b25-git于 392a5-Create The Worid!于