Replies: 2 comments
-
I am not aware of such a feature. But then, this is not a Windows-specific question. Maybe take it to the Git mailing list (send plain-text messages, HTML messages are dropped silently)? |
Beta Was this translation helpful? Give feedback.
-
@eamodio Hi, I ran a bunch of The extra cost of Please correct me if I'm wrong. You can check these functions for more info: |
Beta Was this translation helpful? Give feedback.
-
In GitLens (and in GitKraken Client with the new experimental feature to use the Git binary) we run:
git log --stdin -z --format=%x00%x00%H%x00%aN%x00%aE%x00%at%x00%ct%x00%P%x00%D%x00%B%x00 --date-order --all --
Which is nicely optimized when the
commit-graph
Git feature is enabled, but when you add--shortstat
to that it becomes 10x slower. Is there any feature in Git to optimize that?For reference we use
--shortstat
to provide the visualization data for the minimap show above the Commit Graph, and for theChanges
column so that you can see the magnitude of the change set.Beta Was this translation helpful? Give feedback.
All reactions