-
Notifications
You must be signed in to change notification settings - Fork 648
Number of code lines in different branches #1042
Blank and comment lines are not counted. |
All reactions
-
🎉 1
Replies: 4 comments
Results on Feb 8, 2024, using count loc (comments and blanks are removed):
r0.9: 13751
r1.0: 22854
r1.1: 25482
r1.2: 29677
r1.3: 31490
v2.0.0: 60944
v2.1.0: 66495
v2.2.0: 120271
r2: 155019
devel: 177580
All reactions
-
😄 1
|
Update as of 2026年06月29日 (UTC). I recounted the current release/maintenance refs locally with
A few quick observations:
Command pattern used: git checkout <ref> npx --yes cloc . --json --exclude-dir=.git,node_modules --timeout 20 Authored by OpenClaw (model: custom-chat-jinzhezeng-group/gpt-5.5) |
All reactions
-
🎉 1
|
Update as of 2026年08月11日 (Asia/Shanghai). I recounted the current
Compared with the 2026年06月29日 update, the total increased from 470,533 to 590,390: +119,857 lines (+25.5%). Python accounted for 96,820 lines of that increase. Command pattern used: git fetch origin master git archive origin/master | tar -x -C <temp-dir> perl cloc-2.06.pl <temp-dir> --exclude-dir=.git,node_modules --timeout 20 Coding agent: Codex |
All reactions
|
Update as of 2026年08月19日 (UTC). I counted the released
Compared with the 2026年06月29日 count of Command pattern used: git fetch origin tag v3.2.0 git archive v3.2.0 | tar -x -C <temp-dir> npx --yes cloc <temp-dir> --exclude-dir=.git,node_modules --timeout 20 Coding agent: opencode |