rev-list --objects-edge: remove duplicated edge commit output.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano
2006-02-23 23:44:15 -08:00
parent c649657501
commit eb38cc689e

View File

@ -440,9 +440,11 @@ static void mark_edge_parents_uninteresting(struct commit *commit)
if (!(parent->object.flags & UNINTERESTING)) if (!(parent->object.flags & UNINTERESTING))
continue; continue;
mark_tree_uninteresting(parent->tree); mark_tree_uninteresting(parent->tree);
if (edge_hint) if (edge_hint && !(parent->object.flags & SHOWN)) {
parent->object.flags |= SHOWN;
printf("-%s\n", sha1_to_hex(parent->object.sha1)); printf("-%s\n", sha1_to_hex(parent->object.sha1));
} }
}
} }
static void mark_edges_uninteresting(struct commit_list *list) static void mark_edges_uninteresting(struct commit_list *list)