]> git.ipfire.org Git - thirdparty/git.git/commit
grep: read submodule entry with explicit repo
authorJonathan Tan <jonathantanmy@google.com>
Mon, 16 Aug 2021 21:09:54 +0000 (14:09 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 8 Sep 2021 18:47:59 +0000 (11:47 -0700)
commit78ca584f1c4a720988f6066693b4d2ccde920813
treed485d5f3b452f3ec8aba7f17fb3d54861d43e3c7
parent50d92b5f03f3c84d581b27cb8fa3a4b8cfbf2567
grep: read submodule entry with explicit repo

Replace an existing parse_object_or_die() call (which implicitly works
on the_repository) with a function call that allows a repository to be
passed in. There is no such direct equivalent to parse_object_or_die(),
but we only need the type of the object, so replace with
oid_object_info().

Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Reviewed-by: Emily Shaffer <emilyshaffer@google.com>
Reviewed-by: Matheus Tavares <matheus.bernardino@usp.br>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/grep.c