Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
builtin-fast-export: Only output a single parent per line
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 changes fast-export to output a single parent per line. Otherwise neither git-fast-import nor bzr-fast-import can read its output. [jc: fix-up to remove excess LF in the output that makes fast-import barf] Signed-off-by: Pieter de Bie <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
- Loading branch information