]> git.ipfire.org Git - thirdparty/git.git/commit - builtin/grep.c
grep: search history of moved submodules
authorBrandon Williams <bmwill@google.com>
Fri, 16 Dec 2016 19:03:22 +0000 (11:03 -0800)
committerJunio C Hamano <gitster@pobox.com>
Thu, 22 Dec 2016 19:47:33 +0000 (11:47 -0800)
commite6fac7f3d3e313a93fe9b1243917669267b33153
treefde85830d787296774d14bb8ff9e71a6eeb0dfa6
parent74ed43711fd1cd7ce155d338f87ebe52cb74d9e2
grep: search history of moved submodules

If a submodule was renamed at any point since it's inception then if you
were to try and grep on a commit prior to the submodule being moved, you
wouldn't be able to find a working directory for the submodule since the
path in the past is different from the current path.

This patch teaches grep to find the .git directory for a submodule in
the parents .git/modules/ directory in the event the path to the
submodule in the commit that is being searched differs from the state of
the currently checked out commit.  If found, the child process that is
spawned to grep the submodule will chdir into its gitdir instead of a
working directory.

In order to override the explicit setting of submodule child process's
gitdir environment variable (which was introduced in '10f5c526')
`GIT_DIR_ENVIORMENT` needs to be pushed onto child process's env_array.
This allows the searching of history from a submodule's gitdir, rather
than from a working directory.

Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/grep.c
t/t7814-grep-recurse-submodules.sh