Antonio Russo <aerusso@xxxxxxxxxxx> writes: > As a side note, would this list be willing to look at patches that remove > the need to use revs->limited? Adding new features would be much easier if > we could restrict git to use streaming algorithms for these simplifications. Do you mean you will write new implementations of operations like "--simplify-merges", "--ancestory-path" and all its friends without the need for the "limited" bit? Willing to look at? I do not know about others, but sure, it would make be extremely excited. You may be able to rewrite some other operations that implicitly require the limited bit into an incremental implementation, but I am skeptical that you can do "simplify-merges" in a streaming fashion in such a way that we'd dig a bit but not all the way down before making decisions on which commits should be included in the output and how their parenthood relationship should appear etc. I and Linus tried independently and we did not get that far in our attempts (note: there wasn't commit-graph back then). If you are talking about precomputed stuff like commit-graph, that may change the equation, but we'd prefer to have the system work without requiring these auxiliary data (in other words, it would be fine to use them as optimization).