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
I have a repo with ~70000 commits. --analyze is rather quick (minutes) until it reaches about 35000 commits, and from that point on it takes ages (= days)
a) the commits I want to change are all in the same branch or sub-branches of it and less than 2 days old.
It would be great if there were an option to limit analyze to e.g. a specific commit and commits after it?
b) any idea what could cause this slowness?
The text was updated successfully, but these errors were encountered:
My first guess would be that in the first 35000 commits, you didn't delete or rename files, but afterward you did. Likely in the form of entire directories being moved or deleted, causing rename detection to be very expensive.
If you don't mind losing out on renames, you could change the line which reads
I have a repo with ~70000 commits.
--analyze
is rather quick (minutes) until it reaches about 35000 commits, and from that point on it takes ages (= days)a) the commits I want to change are all in the same branch or sub-branches of it and less than 2 days old.
It would be great if there were an option to limit analyze to e.g. a specific commit and commits after it?
b) any idea what could cause this slowness?
The text was updated successfully, but these errors were encountered: