I have a git repository, which has changes that I am slowly bringing into a mercurial repository. (It's a weird history, and I'm hand checking everything, and just as well that I am).
Currently, I've generating a diff using git diff
, and merging it using patch. That had a few problems, so I switched hg import
, which has problems of its own.
What's the best way of doing this?
(What errors? The biggest culprits are lost hunks, and hunks that don't merge and need to done manually. I get "bad end of line" occasionally, and patch
sometimes reports that the git diff is corrupted.)