English 中文(简体)
Unable to do an SVNump -- Error E720002 and Format wrong
原标题:Unable to do an SVN dump -- Error E720002 and format errors

I m New to SVN, so forgive the possible Truforward problem. 我试图把我的一个项目改道:

svnadmin dump C:codeproject1 -r 9 > repo.dmp

不幸的是,我犯了这一错误:

svnadmin: E720002: Can t open file  project1format : The system cannot 
find the file specified.

看来正在研究<代码>format 文档,实际载于project1.svnformat。 这使我感到迷惑不解,因为我期望看到<代码>.svn项目1的子标题,但正从根源上看。

我随后尝试:

svnadmin dump project1.svn -r 9 > repo.dmp

但结果是:

svnadmin: E165005: Expected repository format  3  or  5 ; found format  12 

我认为,这是一个问题,我的格式没有数据,因为这是我刚才宣读的一个共同问题。 我的服务器是存储器。 在我的客户中,我使用TortoiseSVN和SVN:

TortoiseSVN 1.7.4, Build 22459 - 64 Bit Subversion 1.7.2

经过进一步阅读,我可能会混淆情况,需要对照实际存放处,而不是我的当地工作复印件。 问题是,存放处位于云层,由存放处托管。

would love some help with what s going on...

最佳回答

svnadmin dump is for working on the repository(server side), not the working copy (client side) The errormessage about format is misleading as it searches for the format file in repository and finds a file with same name in your workingcopy.

If you are interested to get a full backup of your repository you can use svnrdump for this purpose. It is used the same way than svnadmin dump, however it is possible to get the dump from an remote repository: use

svnrdump  dump -r0:HEAD [URL_TO_YOUR_REPO] > Your_dumpfile.dmp

www.un.org/Depts/DGACM/index_spanish.htm THIS IS Anew SVN 1.7 FEAential

问题回答

暂无回答




相关问题
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 ...

热门标签