You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Lübbe Onken <lu...@netzbeisser.de> on 2003/07/17 19:02:24 UTC

Problem tagging old revisions

Hi folks,

I have the following problem. I rearranged my directory structure from:
myrepos/trunk/projectA/
...
myrepos/trunk/projectZ/
myrepos/tags/...
myrepos/branches/...

Revisions in that structure went from 1..300

to:
myrepos/ProjectA/trunk
myrepos/ProjectA/tags
myrepos/ProjectA/branches
...
myrepos/ProjectZ/...

After all that moving directories around the head revision is 315. So 
that's what I did to the repository.

I'd like to tag Revision 200 of ProjectA/trunk, which was in the old 
structure

svn list -r 200 http://server/test_repos/trunk/ProjectA lists everything 
I expect to find there.
svn list -r 315 http://server/test_repos/ProjectA/trunk works as well
svn list -r 315 http://server/test_repos/ProjectA/tags shows me an empty 
list

I tried the following thing with the CL client:
svn cp -r 200 
http://myserver/myrepos/trunk/ProjectA http://myserver/myrepos/ProjectA/tags/0.90 
-m "Tagging Prototype"

The CL Result is:
svn: RA layer request failed
svn: PROPFIND request failed on '/test_repos/!svn/bc/315/ProjectA'
svn: PROPFIND of '/test_repos/!svn/bc/315/ProjectA': 404 Not Found 
(http://server)

This looks a bit like 
http://subversion.tigris.org/issues/show_bug.cgi?id=1375 to me, but 
maybe somebody can tell me if it is and if not if there is a way to 
achieve my goal. (Phew lots of if's :-)

Cheers & Thanks
-Lübbe


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: Problem tagging old revisions

Posted by Ben Collins-Sussman <su...@collab.net>.
Lübbe Onken <lu...@netzbeisser.de> writes:

> I tried the following thing with the CL client:
> svn cp -r 200 http://myserver/myrepos/trunk/ProjectA
> http://myserver/myrepos/ProjectA/tags/0.90 -m "Tagging Prototype"
> 
> The CL Result is:
> svn: RA layer request failed
> svn: PROPFIND request failed on '/test_repos/!svn/bc/315/ProjectA'
> svn: PROPFIND of '/test_repos/!svn/bc/315/ProjectA': 404 Not Found
> (http://server)

I'm not able to reproduce this problem, using today's subversion.  I
have a local copy of svn's own repository, and this command works fine
for me:

$ svn cp -r2000 http://localhost/svn/bigrepos/branches/0.11.0 \
  http://localhost/svn/bigrepos/tags/mootag -m "make a tag"
 
Committed revision 6445.


What version are you using?

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org