X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=dgit;h=4c8a09dadfa9e43f44c5f8556864874a0e15adc0;hb=a6c314119abf6563de1651764756a46e169e6716;hp=38b02e4e1b4ca07f8163b9e0ad440a2df0d1b24b;hpb=b2930de82f96119b5e4c3ac8f7c855477dfc2e6b;p=dgit.git diff --git a/dgit b/dgit index 38b02e4e..4c8a09da 100755 --- a/dgit +++ b/dgit @@ -1377,6 +1377,7 @@ sub clone ($) { my ($dstdir) = @_; canonicalise_suite(); badusage "dry run makes no sense with clone" unless act_local(); + my $hasgit = check_for_git(); mkdir $dstdir or die "$dstdir $!"; changedir $dstdir; runcmd @git, qw(init -q); @@ -1388,7 +1389,7 @@ sub clone ($) { close H or die $!; runcmd @git, qw(remote add), 'origin', $giturl; } - if (check_for_git()) { + if ($hasgit) { progress "fetching existing git history"; git_fetch_us(); runcmd_ordryrun_local @git, qw(fetch origin);