aboutsummaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authorBrandon Williams <bmwill@google.com>2017-03-17 10:22:54 -0700
committerJunio C Hamano <gitster@pobox.com>2017-03-17 11:54:50 -0700
commitb58a68c1c1874ff155699d82947c9f026f431cb3 (patch)
treeff6fceed533478b794de61348ab65dcd775d30a9 /git.c
parent4fb1c6aad82212051d95b2d0b1f4c877d076bf5d (diff)
downloadgit-b58a68c1c1874ff155699d82947c9f026f431cb3.tar.gz
git-b58a68c1c1874ff155699d82947c9f026f431cb3.tar.xz
setup: allow for prefix to be passed to git commands
In a future patch child processes which act on submodules need a little more context about the original command that was invoked. This patch teaches git to use the prefix stored in `GIT_INTERNAL_TOPLEVEL_PREFIX` instead of the prefix that was potentally found during the git directory setup process. Signed-off-by: Brandon Williams <bmwill@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git.c')
-rw-r--r--git.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/git.c b/git.c
index c887272b1..51bad4127 100644
--- a/git.c
+++ b/git.c
@@ -361,8 +361,6 @@ static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
if (!help && get_super_prefix()) {
if (!(p->option & SUPPORT_SUPER_PREFIX))
die("%s doesn't support --super-prefix", p->cmd);
- if (prefix)
- die("can't use --super-prefix from a subdirectory");
}
if (!help && p->option & NEED_WORK_TREE)