Perf issue: can "G log"/"Gclog"/"Gllog" support pagenation? or support "load more"? #2344
Closed
flyingosprey
started this conversation in
General
Replies: 1 comment
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
On large project which has 10k commits or more, "G log"/"Gclog"/"Gllog" is very slow, which is not usable. (too slow to use)
I think the reason is because above cmd try to pull all commit info in 1 time. On larget project, this 1 time action take very log time.
So can "G log"/"Gclog"/"Gllog" support pagenation? or support "load more"?
pagenation: this is how "git log" works. It loads commit info page by page.
"load more": This is how VSCode + gitlens plugin works. It queris a limit number of commit info. And there is a button "load more", which allows user to load more commit info if needed.
The most simple way to repro this issue: clone linux repro. Then run above 3 command. They ALMOST don't work because of the perf issue.
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions