summaryrefslogtreecommitdiff
path: root/fetch-pack.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-08-30 17:05:55 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-08-30 17:05:55 (GMT)
commite250020cd06b703b5cf618b4f1b2399369c39c9a (patch)
treecec458d0f4574ce00cc0b66ec3593862c6459c15 /fetch-pack.c
parente230c568c4b9a991e3175e5f65171a566fd8e39c (diff)
parent6da8bdcbbfd5ac9c4a92de79d7b4343d5d6bd4c5 (diff)
downloadgit-e250020cd06b703b5cf618b4f1b2399369c39c9a.zip
git-e250020cd06b703b5cf618b4f1b2399369c39c9a.tar.gz
git-e250020cd06b703b5cf618b4f1b2399369c39c9a.tar.bz2
Merge branch 'nd/fetch-pack-shallow-fix'
The recent "short-cut clone connectivity check" topic broke a shallow repository when a fetch operation tries to auto-follow tags. * nd/fetch-pack-shallow-fix: fetch-pack: do not remove .git/shallow file when --depth is not specified
Diffstat (limited to 'fetch-pack.c')
-rw-r--r--fetch-pack.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fetch-pack.c b/fetch-pack.c
index 6684348..f5d99c1 100644
--- a/fetch-pack.c
+++ b/fetch-pack.c
@@ -897,6 +897,8 @@ static struct ref *do_fetch_pack(struct fetch_pack_args *args,
packet_flush(fd[1]);
if (args->depth > 0)
setup_alternate_shallow();
+ else
+ alternate_shallow_file = NULL;
if (get_pack(args, fd, pack_lockfile))
die("git fetch-pack: fetch failed.");
@@ -987,7 +989,7 @@ struct ref *fetch_pack(struct fetch_pack_args *args,
}
ref_cpy = do_fetch_pack(args, fd, ref, sought, nr_sought, pack_lockfile);
- if (alternate_shallow_file) {
+ if (args->depth > 0 && alternate_shallow_file) {
if (*alternate_shallow_file == '\0') { /* --unshallow */
unlink_or_warn(git_path("shallow"));
rollback_lock_file(&shallow_lock);