Re: [PATCHv3 3/7] revision.h: introduce blob/tree walking in order of the commits

2017-11-14 Thread Jonathan Tan
On Thu, 2 Nov 2017 12:41:44 -0700 Stefan Beller wrote: > @@ -239,6 +239,8 @@ void traverse_commit_list(struct rev_info *revs, > if (commit->tree) > add_pending_tree(revs, commit->tree); > show_commit(commit, data); > + if (revs->tree_

[PATCHv3 3/7] revision.h: introduce blob/tree walking in order of the commits

2017-11-02 Thread Stefan Beller
The functionality to list tree objects in the order they were seen while traversing the commits will be used in the next commit, where we teach `git describe` to describe not only commits, but trees and blobs, too. Signed-off-by: Stefan Beller --- Documentation/rev-list-options.txt | 5 li