Authentication Error by creting a branch with Zend Studio

Hi,

iam using zend studio and your svn system.
Everything works fine. I have no Problems with commit or update my project.
Today i wanted to create a branch and get and error.

@Authentication error.
svn: Commit failed (details follow):
svn: COPY of /svn/***/!svn/bc/16: 403 Forbidden (http://svn3.xp-dev.com)@

Have i made a mistake? Normally i have no problems with authentification.

***

Forum Topic Options

Feeds

Forum Topic and Comments

rs on Tue 03 May, 2011

You can’t create a branch from a root directory. At the moment you have your repository located at the top level directory, ‘/’ - and are trying to make a copy of that into itself ‘/branches/...’. Subversion does not like that as every its basically trying to copy into itself and make a new revision.

What you need to do is:

  1. Create a ‘/trunk’ folder
  2. Move everything (except ‘/branches’) into the ‘/trunk’ folder
  3. Make branches, which are essentially “copies” from ‘/trunk’ into '/branches/...'
 

You do not have sufficient permissions to comment