Just for a short background, the reason I'm tracking this particular suffix is because I found it to troubleshoot in our new Maven setting (specifically in the release plugin). release:prepare gives me the same error as in stack trace.
Executing this command ...
svn copy http://[server]/svn/tran1/myproject/trunk http://[server]/svn/tran1/myproject/tags/testtag
... gives me the following error:
svn: Server sent unexpected return value (403 Forbidden) in response to PROPFIND request for '/svn/tran1'
I thought it might be an authentication problem, but I can do almost all the other subversion things I can think of. Place an order, add, commit and update all work from the command line. And here, where it gets really weird ... I can create branches using the Eclipse Subclipse plugin. Perhaps this is not so strange if Eclipse does not actually perform svn copy .
tran1 also has a subversion sibling repository next to it. The copy command works fine there.
The URL that is trying to get permission also looks wrong. He asks about / svn / tran 1 when permissions are set one level deeper / svn / tran 1 / myproject /
Any ideas that might cause my mistake? Thanks.
source share