summaryrefslogtreecommitdiff
path: root/builtin-fetch.c
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2007-10-19 04:54:59 (GMT)
committerShawn O. Pearce <spearce@spearce.org>2007-10-19 07:47:07 (GMT)
commitcfa5b2b7faa1a620ec6599a63fa5b9b45bd62b57 (patch)
treec0b728d7ec2e7108a609919deb7f97436cafc4f8 /builtin-fetch.c
parentda0204df587ae76cd291bc7e495fc60d873c2f20 (diff)
downloadgit-cfa5b2b7faa1a620ec6599a63fa5b9b45bd62b57.zip
git-cfa5b2b7faa1a620ec6599a63fa5b9b45bd62b57.tar.gz
git-cfa5b2b7faa1a620ec6599a63fa5b9b45bd62b57.tar.bz2
Avoid scary errors about tagged trees/blobs during git-fetch
This is the same bug as 42a32174b600f139b489341b1281fb1bfa14c252. The warning "Object $X is a tree, not a commit" is bogus and is not relevant here. If its not a commit we just need to make sure we don't mark it for merge as we fill out FETCH_HEAD. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'builtin-fetch.c')
-rw-r--r--builtin-fetch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin-fetch.c b/builtin-fetch.c
index 3442f3d..b9d2b0c 100644
--- a/builtin-fetch.c
+++ b/builtin-fetch.c
@@ -202,8 +202,8 @@ static int update_local_ref(struct ref *ref,
return s_update_ref("updating tag", ref, 0);
}
- current = lookup_commit_reference(ref->old_sha1);
- updated = lookup_commit_reference(ref->new_sha1);
+ current = lookup_commit_reference_gently(ref->old_sha1, 1);
+ updated = lookup_commit_reference_gently(ref->new_sha1, 1);
if (!current || !updated) {
char *msg;
if (!strncmp(ref->name, "refs/tags/", 10))
@@ -261,7 +261,7 @@ static void store_updated_refs(const char *url, struct ref *ref_map)
ref->force = rm->peer_ref->force;
}
- commit = lookup_commit_reference(rm->old_sha1);
+ commit = lookup_commit_reference_gently(rm->old_sha1, 1);
if (!commit)
rm->merge = 0;