You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If hash abbreviation is enabled in git config, it will fail with the previous error. This can be fixed by calling git log with the abbrev option set to 40 (effectively disabling this configuration).
The text was updated successfully, but these errors were encountered:
Since gitlog-parser uses a simple parsing algorithm with slice
slice(7, 47)
, it requires the hash to be exactly 40 char long (its default length).Otherwise the git log output will be split incorrectly, causing this error
If hash abbreviation is enabled in git config, it will fail with the previous error. This can be fixed by calling
git log
with theabbrev
option set to 40 (effectively disabling this configuration).The text was updated successfully, but these errors were encountered: