我已经在本地安装了Bonobo Git Server (3.4.2.0)。我有一个包含旧存储库的SVN服务器?如何导入这些存储库以便在Bonobo Git Server下工作。
发布于 2015-04-21 09:08:33
我过去/现在也一样,不得不将我们的SVN存储库迁移到git (使用Bonobo服务器)。
基本上遵循了Troy Hunts' blog post here中的说明
我创建了一个authors文件来将svn用户映射到git用户,从而将--authors ../authors.txt附加到svn2git命令行。
在提供作者文件时,如果文件中没有记录,则svn2git将停止。
作者的文件格式是每个作者一行
SVNUser =全名email@domain
发布于 2014-12-15 22:21:46
Git可以导入SVN项目
git svn clone <repo>
摘自:http://git-scm.com/book/en/v2/Git-and-Other-Systems-Migrating-to-Git
更多资源:
https://www.atlassian.com/git/tutorials/migrating-overview/
How to migrate SVN repository with history to a new Git repository?
发布于 2015-01-28 19:10:55
我所做的是
1在Bonobo中创建新的存储库
2将其克隆到我的桌面上
克隆中的3个,
git svn init http://192.168.x.y/svn/my_repo/trunk
git svn fetch
git push origin masterhttps://stackoverflow.com/questions/27486020
复制相似问题