diff options
author | Junio C Hamano <junkio@cox.net> | 2006-11-14 07:47:46 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-11-25 00:42:49 +0100 |
commit | 176d45cb20eb4ffc661d73383aec01943e056e10 (patch) | |
tree | decbac577d0a2af55b13d9396be9ce1fb6a86a4c /upload-pack.c | |
parent | Why didn't we mark want_obj as ~UNINTERESTING in the old code? (diff) | |
download | git-176d45cb20eb4ffc661d73383aec01943e056e10.tar.xz git-176d45cb20eb4ffc661d73383aec01943e056e10.zip |
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.c | 1 |
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) { |