简体   繁体   中英

Best way to merge a git revision into a mercurial repository?

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.)

Have you tried using the hg-git extension ? With it, you can pretty easily pull from a Git repo, thus converting a Git repo into a Mercurial repo in the process (and, if desired, you can also push back into the Git repo from hg).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM