vote up 1 vote down star
1

I want to create tag in subversion. On the command line I have tried the following:

svn copy http://myserver.mycompany.com:8080/svn/SVN_Main/trunk http://myserver.mycompany.com:8080/svn/SVN_Main/tag/Build-5.4.3.2 -m "Build 5.4.3.2 tag"

I get this error:

svn: Path 'http://myserver.mycompany.com:8080/svn/SVN_Main/trunk' does not exist for revision 1234

The path http://myserver.mycompany.com:8080/svn/SVN_Main/trunk is exact same path that I have when I use the repro-browser on that folder. Any ideas on what may be causing this problem? I have also tried it w/wo username/password.

flag

2 Answers

vote up 1 vote down check

What happens if you just do the copy from within the repository browser (right click on the folder, then copy)

Could it also be a case-sensitivity issue? We run our svn server under Apache on Windows and find that reads are general case-insensitive, but write operations are case sensitive.

This is a real pain if a developer checks out /trunk/somefolder when the name is really /trunk/SomeFolder. They will get an error only when trying to commit.

link|flag
That was it. I had "trunk" instead of "Trunk" – t-boy Dec 5 '08 at 16:07
vote up 0 vote down

Either that isn't the right path, or you've put a -r option in there that you didn't show. Try a svn ls on that path to confirm it is correct. If you passed -r, make sure you've used the right revision.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.