Merge branch 'maint-1.5.4' into maint

* maint-1.5.4:
  builtin-fast-export: Only output a single parent per line
This commit is contained in:
Junio C Hamano 2008-05-25 22:34:05 -07:00
Родитель 20bd3b072f 5070b49e52
Коммит 6abf189506
1 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -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;