English 中文(简体)
我该如何将Google代码 Subversion repo 移动到 CollabNet 上?
原标题:How do I move my Google Code Subversion repo to CollabNet

我最难弄明白如何将我的 Subversion 仓库从 Google 代码移到 CollabNet Subversion Edge 服务器。 我读到过如何制作垃圾文件, 迁移, 备份和同步, 找不到正确的答案。 我认为, 正在发生的事情是, 我不知道怎么输入 Google 。 我完全失去了。 我已经搜索了大约三个小时了 。

最佳回答

从 Google 代码获取您的仓库的倾弃文件 。 在 Subversion 边缘中, 创建一个新的空仓库, 然后使用负载选项装入您从 Google 代码获取的倾卸文件 。

如果 Google 不允许您下载一个倾弃文件, 那么您应该能够在 SVN Edge 中创建一个新的空仓库, 然后从任何客户端使用 svnsync 命令行工具将仓库从 Google 代码同步到您的 Subversion Edge 仓库。 要做到这一点, 您只需要打开 Subversion Edge 仓库中的 预revprop- change 钩子。 钩子脚本可以是空文件, 也可以是“ exit 0 ” 的单行 。

问题回答

除了svnsync 之外,还可以更容易地获取您的存储库的倾弃处:使用 svnrdump 工具,该工具被引入Apache Subversion 1.7 释放。





相关问题
Best practices for Subversion and Visual Studio projects

I ve recently started working on various C# projects in Visual Studio as part of a plan for a large scale system that will be used to replace our current system that s built from a cobbling-together ...

Changing username in SVN+SSH URI on the fly in working copy

I am using SVN+SSH to check out a working copy of repository from an SVN server on which all developers are members of a developer group and have full read/write permissions on the repository ...

ASP.NET MVC: How should it work with subversion?

So, I have an asp.net mvc app that is being worked on by multiple developers in differing capacities. This is our first time working on a mvc app and my first time working with .NET. Our app does not ...

How to search for file in subversion server?

Is there a way to search for a file in a subversion repository? Something similar to Unix find command, with which I can find the location of a file in a repository. I know there is svn list, but ...

热门标签