I´m creating a svn repository in my Linux server and this are the commands I´m using:
- I´m in /home/myuser folder
- I create a folder: mkdir repository_folder
- Then I go to that folder: cd repository_folder
- Then I create the repository: svnadmin create test
- From this point I have some questions, because I don´t see the trunk,tags and branches folders and the folder structure is:
- conf
- db
- format
- hooks
- locks
- README.txt
- If I try inside the repository folder: svn mkdir trunk , it returns me an error: "svn: '.' is not a working copy"
- If I want to import a project from /home/myuser/myproject to /home/myuser/repository_folder/test/trunk , the command should be: svn import /home/myuser/myproject file:///home/myuser/repository_folder/test/trunk -m "some message" ??
What am I doing wrong when creating the repository?