From: Ian Jackson Date: Wed, 2 Aug 2017 18:25:34 +0000 (+0100) Subject: directory refactoring: dgit clone: call record_maintree X-Git-Tag: archive/debian/4.1~31 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=b5c3e33d87675507eff29ba1d5e1c4998b15f3fd;hp=de8600f92c856f9a9925ed4754ab136c53827389 directory refactoring: dgit clone: call record_maintree We are making up our own tree, here. We will need to call record_maintree in case we need to use information which it obtains. Currently, we don't. But git worktrees are complicated: we are going to have to depend on the new $maindir_git* variables, in setup_new_tree. Signed-off-by: Ian Jackson --- diff --git a/dgit b/dgit index 733e6ea1..a67c12cb 100755 --- a/dgit +++ b/dgit @@ -3590,6 +3590,7 @@ sub clone ($) { mkdir $dstdir or fail "create \`$dstdir': $!"; changedir $dstdir; runcmd @git, qw(init -q); + record_maindir(); setup_new_tree(); clone_set_head(); my $giturl = access_giturl(1);