Dear Open Hub Users,
We’re excited to announce that we will be moving the Open Hub Forum to
https://community.blackduck.com/s/black-duck-open-hub.
Beginning immediately, users can head over,
register,
get technical help and discuss issue pertinent to the Open Hub. Registered users can also subscribe to Open Hub announcements here.
On May 1, 2020, we will be freezing https://www.openhub.net/forums and users will not be able to create new discussions. If you have any questions and concerns, please email us at
[email protected]
Hi,
If you compare these two contributors:
The results show 16,130 for the first, 17,421 for the second. However, if you run the following git command:
git log -C -M --author=ivan.komarov --pretty=tformat: --numstat | gawk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf added lines: %s removed lines: %s total lines: %s\n
,add,subs,loc }'
The results are totally different:
added lines: 3277 removed lines: 6446 total lines: -3169
added lines: 14477 removed lines: 9636 total lines: 4841
Clearly there's something wrong with the way lines are counted.