我阅读了Git手册、常见问题解答、Git-SVN速成课程等,他们都解释了这一点和那一点,但你找不到像这样的简单说明:
SVN存储库位于:svn://myserver/path/to/svn/repos
Git存储库位于:git://myserver/path/to/git/repos
git-do-the-magic-svn-import-with-history \
svn://myserver/path/to/svn/repos \
git://myserver/path/to/git/repos
我不希望它这么简单,也不希望它是一个命令。但我确实希望它不要试图解释任何事情——只是说在这个例子中应该采取什么步骤。
从Subversion到Git(或同时使用两者)的平滑迁移有一个新的解决方案:SubGit。
我自己在做这个项目。我们在我们的存储库中使用SubGit——我的一些队友使用Git和一些Subversion,到目前为止它工作得很好。
要使用SubGit从Subversion迁移到Git,您需要运行:
$ subgit install svn_repos
...
TRANSLATION SUCCESSFUL
之后,您将获得svn_repos/.Git中的Git存储库,并可以克隆它,或者继续使用Subversion和这个新的Git库:SubGit将确保两者始终保持同步。
如果Subversion存储库包含多个项目,那么将在svn_repo/Git目录中创建多个Git存储库。要在运行翻译之前自定义翻译,请执行以下操作:
$ subgit configure svn_repos
$ edit svn_repos/conf/subgit.conf (change mapping, add authors mapping, etc)
$ subgit install svn_repos
使用SubGit,您可以迁移到纯Git(而不是Git-svn)并开始使用它,同时只要您需要它,就可以保留Subversion(例如,对于您已经配置的构建工具)。
希望这有帮助!
为此,我使用了svn2git库,过程如下:
sudo apt-get安装git-core git-svn-rubysudo gem安装svn2gitsvn log--quiet|grep-E“r[0-9]+\|.+\|”|cut-d'|'-f2|sed's///g'|sort|uniq>authors.txt(此命令用于映射作者)
以上步骤应该在要从svn转换为git的文件夹中执行。
在authors.txt中每行添加一个映射,如下所示
anand = Anand Tripathi <email_id>
trip = Tripathi Anand <email_id>
为新的git存储库创建一个文件夹,并执行以下命令,路径为authors.txt
svn2git <svn_repo_path> --nobranches --notags --notrunk --no-minimize-url --username <user_name> --verbose --authors <author.txt_path>
If no trunk and no tag and branch is present then have to execute the above command else if root is trunk then mention rootistrunk or trunk is present then --trunk <trunk_name>
git远程添加原点git push—所有原点git push—标记原点
我建议在尝试经常使用Git-svn之前,先熟悉Git,即保持svn作为集中存储库并在本地使用Git。
然而,对于具有所有历史记录的简单迁移,以下是几个简单步骤:
初始化本地回购:
mkdir project
cd project
git svn init http://svn.url
标记要开始导入修订的时间:
git svn fetch -r42
(或仅对所有版本使用“gitsvn-fetch”)
事实上,从那时起,获取一切:
git svn rebase
您可以使用Gitk检查导入的结果。我不确定这是否适用于Windows,但适用于OSX和Linux:
gitk
当您在本地克隆了SVN repo后,您可能希望将其推送到集中的Git repo,以便于协作。
首先创建空的远程存储库(可能在GitHub上?):
git remote add origin git@github.com:user/project-name.git
然后,可选地同步您的主分支,这样当远程主机和本地主机都包含新内容时,拉操作将自动合并远程主机:
git config branch.master.remote origin
git config branch.master.merge refs/heads/master
之后,您可能会有兴趣尝试我自己的git_remote_branch工具,它有助于处理远程分支:
第一篇解释文章:“Git远程分支”
跟进最新版本:“git与git_remote_branch协作的时间”