我知道您可以将svn存储库转换为mercurial存储库(或者使用mercurial作为svn存储库的客户端),但我想要的是将mercurial存储库转换为svn存储库。
我们有一些使用SVNKit的工具,我们想继续使用它,但希望能够在mercurial存储库上工作。因此,我们希望将mercurial repo完全转换为svn repo。这是可能的吗?(以及如何实现?)
发布于 2010-04-03 23:31:23
考虑使用hgsubversion,它允许您在mercurial中处理svn repo,这听起来像是您的真正目标。
或者,您可以在mercurial中使用'convert‘命令来执行转换:
hg convert --dest-type svn mercurialpath subversionpath其中convert有一些选项,您可以在hg help convert中找到这些选项来影响结果。
发布于 2010-04-03 15:10:17
也许Tailor能帮上忙?
Another question建议使用Mercurial的ConvertExtension。我认为这是严格的导入到Mercurial,但apparently not。
https://stackoverflow.com/questions/2570520
复制相似问题