I am a novice when it comes to using SVN on a command line. Previously I had done everything through a client.
I have created a new repository on my server like this:
%svnadmin create myrepo
However when I examine it, the trunk branches and tags are missing.
%cd myrepo/
%ll
total 14
229 Jul 28 10:22 README.txt
512 Jul 28 10:22 conf
512 Jul 28 10:22 dav
512 Jul 28 10:22 db
2 Jul 28 10:22 format
512 Jul 28 10:22 hooks
512 Jul 28 10:22 locks
Do I need to create these manually? If so, do I just 'mkdir trunk', I thought you are not supposed to do anything to the files inside of the repo manually.
Thanks.