You are not logged in.
Pages: 1
I've been trying to deal with svn recently and faced some problems right at the beginning.
So, I create a repository
$ svnadmin create --fs-type fsfs jobeet
Then do the same as described in the last point of tutorial: (symfony framework): http://www.symfony-project.org/jobeet/1 … rine/en/01
//I mean:
$ svn mkdir -m "created default directory structure" file:///home/svn/jobeet/trunk file:///home/svn/jobeet/tags file:///home/svn/jobeet/branches
$ cd /home/sfprojects/jobeet
$ svn co file:///home/svn/jobeet/trunk/ .
$ rm -rf cache/* log/*
$ chmod 777 cache/ log/
$ svn add *
$ svn propedit svn:ignore cache
$ svn propedit svn:ignore log
$ svn import -m "made the initial import" . file:///home/svn/jobeet/trunk
Project has been imported, but when I try to send current (after altering some files) version to repo (svn commit), I get this error*:
Adding apps
svn: Confirmation failed (details below):
svn: File already exists: filesystem '/home/svn/jobeet/db', transaction '2-3, path '/trunk/apps'
* free translation
Why?
What am I doing wrong? How to successfuly perform svn commit operation in this case?
Offline
Pages: 1