how to include missing commits in metrics? #381
-
Just looking at the output of the languages section, I can tell there are many commits and lines missing. I am sure this has something to do with commit authoring under different credentials, but I'm not sure how to fix this. Additionally, would I be able to include commits in my organization account? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Commits you made are detected through To change scopes of repositories affected, you may also need to tweak with Huge commits may not be processable so that's why the number of commits used to compute stats was added. |
Beta Was this translation helpful? Give feedback.
Commits you made are detected through
git log --author=<commits_authoring> --regexp-ignore-case
, so basically you need to find under which email you committed (login and names may work too though you could have collisions). This option is a comma separated array, socommits_authoring: GalaxySH, [email protected], [email protected]
should work if you have multiple addresses or namesTo change scopes of repositories affected, you may also need to tweak with
repositories_affiliations
optionHuge commits may not be processable so that's why the number of commits used to compute stats was added.
It'll help detecting whether some commits have been skipped or not (I'm not sure…