| 279 | } |
| 280 | |
| 281 | static void show_children(struct rev_info *opt, struct commit *commit, int abbrev) |
| 282 | { |
| 283 | struct commit_list *p = lookup_decoration(&opt->children, &commit->object); |
| 284 | for ( ; p; p = p->next) { |
| 285 | fprintf(opt->diffopt.file, " %s", |
| 286 | repo_find_unique_abbrev(the_repository, &p->item->object.oid, abbrev)); |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | /* |
| 291 | * Do we have HEAD in the output, and also the branch it points at? |
no test coverage detected