- 数据库工具
- datagrip
插件
- wakatime 统计写代码时间
- git commit template 提交代码规范
- Octotree google浏览器插件,GitHub查看代码呈树状结构
统计代码行数
- cloc (安装方式 brew install cloc)
- 使用 cloc ./
- 统计排除当前目录下的某个文件夹的代码量(这里以Pods文件夹为例)
- cloc ./ —exclude-dir=Pods
- 统计特定文件的代码量(这里以acpi为例)
- cloc -by-file acpi
- 帮助文档
- cloc —help