Op di 13 feb 2024 om 09:00 schreef Jeff King <peff@xxxxxxxx>: > > On Tue, Feb 06, 2024 at 09:52:38AM -0800, Junio C Hamano wrote: > > > > That is also a cool idea. That would probably use the functionality of > > > the cat-file batch mode, right? > > > > Not really. I was hoping that "git show" that can take multiple > > objects from its command line would directly be used, or with a new > > option that gives a separator between these objects. > > How about: > > cat some_commit_ids | > git show --stdin -s -z --format='%H%n%N' > > ? > > -Peff Wouldn't that fail horribly with non-text blobs? Are there examples other than cat-file that show how batching is done in git? I'm afraid of adding something to git-notes with slightly different syntax from other batch commands. The git cli is already confusing enough with all the little inconsistencies. Maarten