According to the git-fast-import man-page, you can only put a single
committish per merge: line, like this:
merge :10
merge :11
However, git-fast-export puts all parents on a single line, like this:
merge :10 :11
This may be fine with git-fast-import, but other importers based on it, like
bzr-fast-import, can't handle this.
This changes fast-export to also output a single parent per line.
Signed-off-by: Pieter de Bie <redacted>
---
I'm not sure why this was done, but it messed up my import :)
builtin-fast-export.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/builtin-fast-export.c b/builtin-fast-export.c
index e1c5630..34acdf9 100755
--- a/builtin-fast-export.c
+++ b/builtin-fast-export.c
@@ -204,10 +204,8 @@ 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)--
1.5.5.1.541.g51dc4.dirty