Reputation: 615
I´m creating a svn repository in my Linux server and this are the commands I´m using:
What am I doing wrong when creating the repository?
Upvotes: 0
Views: 309
Reputation: 30662
It seems to me that you are confusing Subversion working copy with a repository. It is expected to see those conf, db, format, hooks etc directories and files on file system.
If you want to create /trunk /branches and /tags directories in the repository, use the command svn mkdir file:///home/myuser/repository_folder/test/trunk file:///home/myuser/repository_folder/test/branches file:///home/myuser/repository_folder/test/tags -m "Initial repository structure"
. BTW, make sure that the path to the repository is valid.
Otherwise, you can svn checkout
the working copy of the repository using svn checkout file:///home/myuser/repository_folder/test/
. Then create the necessary structure, svn add
the new directories and svn commit
them to the repository.
Read SVNBook!
Upvotes: 2