1
0
mirror of https://github.com/git/git.git synced 2024-09-28 18:32:37 +02:00

Why didn't we mark want_obj as ~UNINTERESTING in the old code?

Is this something we would want to do regardless of shallow clone?
This commit is contained in:
Junio C Hamano 2006-11-13 22:47:45 -08:00
parent fcd1e31906
commit c6702f4b95

@ -138,6 +138,7 @@ static void create_pack_file(void)
} else {
for (i = 0; i < want_obj.nr; i++) {
struct object *o = want_obj.objects[i].item;
/* why??? */
o->flags &= ~UNINTERESTING;
add_pending_object(&revs, o, NULL);
}