Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-11-14 09:47:46 +0300
committerJunio C Hamano <junkio@cox.net>2006-11-25 02:42:49 +0300
commit176d45cb20eb4ffc661d73383aec01943e056e10 (patch)
treedecbac577d0a2af55b13d9396be9ce1fb6a86a4c /upload-pack.c
parentc6702f4b95699c6bd47337516c32e3408dda0595 (diff)
shallow clone: unparse and reparse an unshallowed commit
Otherwise we would not read the real parents from the commit object.
Diffstat (limited to 'upload-pack.c')
-rw-r--r--upload-pack.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/upload-pack.c b/upload-pack.c
index 7e3c437d8e..d5b47507db 100644
--- a/upload-pack.c
+++ b/upload-pack.c
@@ -582,6 +582,7 @@ static void receive_needs(void)
object->flags &= ~CLIENT_SHALLOW;
/* make sure the real parents are parsed */
unregister_shallow(object->sha1);
+ object->parsed = 0;
parse_commit((struct commit *)object);
parents = ((struct commit *)object)->parents;
while (parents) {