From: Charles Bailey Date: Tue, 11 Dec 2007 06:47:31 +0000 (+0000) Subject: Fix clone not to ignore depth when performing a local clone X-Git-Tag: v1.5.4-rc0~14 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/d4110a9726c7cd5cda35b7dd03dc8f85fe3dff0c Fix clone not to ignore depth when performing a local clone When git-clone detects that it can perform a local clone it follows a path that silently ignores the depth parameter. Presumably if the user explicitly requests a shallow clone they have a reason to prefer a space efficient clone of just the recent history so bypass the local magic if the user specifies the depth parameter. Signed-off-by: Charles Bailey Signed-off-by: Junio C Hamano --- diff --git a/git-clone.sh b/git-clone.sh index 96a356d8b3..68085a3225 100755 --- a/git-clone.sh +++ b/git-clone.sh @@ -205,7 +205,10 @@ fi # it is local if base=$(get_repo_base "$repo"); then repo="$base" - local=yes + if test -z "$depth" + then + local=yes + fi fi dir="$2"