一个shell脚本, cloc-git
您可以使用以下shell脚本通过一个命令来计算远程Git存储库中的行数:
#!/usr/bin/env bash
git clone --depth 1 "$1" temp-linecount-repo &&
printf "('temp-linecount-repo' will be deleted automatically)\n\n\n" &&
cloc temp-linecount-repo &&
rm -rf temp-linecount-repo
安装
该脚本要求安装CLOC(“代码行数”)。cloc
可以与软件包管理器一起安装-例如,brew install cloc
与Homebrew一起安装。在下方mribeiro/cloc
还发布了一个docker映像。
您可以通过以下方式安装脚本:将脚本的代码保存到文件中cloc-git
,运行chmod +x cloc-git
,然后将文件移动到您的文件夹中,$PATH
例如/usr/local/bin
。
用法
该脚本采用一个参数,git clone
即将接受的任何URL 。例如https://github.com/evalEmpire/perl5i.git
(HTTPS)或git@github.com:evalEmpire/perl5i.git
(SSH)。您可以通过单击“克隆或下载”从任何GitHub项目页面获取此URL。
输出示例:
$ cloc-git https://github.com/evalEmpire/perl5i.git
Cloning into 'temp-linecount-repo'...
remote: Counting objects: 200, done.
remote: Compressing objects: 100% (182/182), done.
remote: Total 200 (delta 13), reused 158 (delta 9), pack-reused 0
Receiving objects: 100% (200/200), 296.52 KiB | 110.00 KiB/s, done.
Resolving deltas: 100% (13/13), done.
Checking connectivity... done.
('temp-linecount-repo' will be deleted automatically)
171 text files.
166 unique files.
17 files ignored.
http://cloc.sourceforge.net v 1.62 T=1.13 s (134.1 files/s, 9764.6 lines/s)
-------------------------------------------------------------------------------
Language files blank comment code
-------------------------------------------------------------------------------
Perl 149 2795 1425 6382
JSON 1 0 0 270
YAML 2 0 0 198
-------------------------------------------------------------------------------
SUM: 152 2795 1425 6850
-------------------------------------------------------------------------------
备择方案
手动运行命令
如果不想麻烦保存和安装Shell脚本,则可以手动运行命令。一个例子:
$ git clone --depth 1 https://github.com/evalEmpire/perl5i.git
$ cloc perl5i
$ rm -rf perl5i
语言学家
如果您希望结果与GitHub的语言百分比完全匹配,可以尝试安装Linguist而不是CLOC。根据其自述文件,您需要先gem install linguist
运行linguist
。我无法使它正常工作(问题#2223)。