如何将 git 存储库复制到新的 svn 存储库中?
我有一些代码,在 git 中做了一些工作后,想将其放入客户端的 svn 存储库中,有什么方法可以使用 git 存储库的历史记录来初始化 svn 存储库吗?
我已经从 svn 存储库初始化了 git 存储库,并定期在现有 svn 和 git 存储库之间提交,但我不知道如何反向操作,从 git 存储库创建 svn 存储库。
I have some code that I want to put into an svn repository for a client after doing some work on it in git, is there any way to initialize a svn repository using a git repository's history?
I have initialized git repositories from svn repositories, and regularly commit between existing svn and git repositories, but I don't know how to go about in the opposite direction, creating an svn repository from a git repository.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,Google 代码有一个很好的例子。 此处描述了一个改编示例。
其要点是您需要伪造第一次提交,然后进行变基和dcommit。
Yeah, Google Code has a good example. An adapted example is described here.
The gist of it is that you need to fake out the first commit and then rebase and dcommit.
尝试使用 git-svn - Subversion 存储库和 git 之间的双向操作...
try using git-svn - Bidirectional operation between a Subversion repository and git...