Skip to content

Commit

Permalink
Merge branch 'maint-1.5.4' into maint
Browse files Browse the repository at this point in the history
* maint-1.5.4:
  builtin-fast-export: Only output a single parent per line
  • Loading branch information
Junio C Hamano committed May 26, 2008
2 parents 20bd3b0 + 5070b49 commit 6abf189
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions builtin-fast-export.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,14 +204,10 @@ static void handle_commit(struct commit *commit, struct rev_info *rev)
continue;
if (i == 0)
printf("from :%d\n", mark);
else if (i == 1)
printf("merge :%d", mark);
else
printf(" :%d", mark);
printf("merge :%d\n", mark);
i++;
}
if (i > 1)
printf("\n");

log_tree_diff_flush(rev);
rev->diffopt.output_format = saved_output_format;
Expand Down

0 comments on commit 6abf189

Please sign in to comment.