summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-03-17 15:59:47 -0400
committerJunio C Hamano <gitster@pobox.com>2014-03-17 15:19:52 -0700
commitcba5e28426a5c9728d883171e4e5e287ab17136a (patch)
treed773ad2e3dcecd4cbed2f1a1b41c467556751434
parent00eda23228acb68c85a76f977f4e59f82189ce3f (diff)
downloadgit-jk/subtree-prefix.tar.gz
subtree: initialize "prefix" variablejk/subtree-prefix
We parse the "--prefix" command-line option into the "$prefix" shell variable. However, if we do not see such an option, the variable is left with whatever value it had in the environment. We should initialize it to a known value, like we do for other variables. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xcontrib/subtree/git-subtree.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/subtree/git-subtree.sh b/contrib/subtree/git-subtree.sh
index dc59a91031..db925ca769 100755
--- a/contrib/subtree/git-subtree.sh
+++ b/contrib/subtree/git-subtree.sh
@@ -46,6 +46,7 @@ ignore_joins=
annotate=
squash=
message=
+prefix=
debug()
{