I created repository in my local machine:
svnadmin create /home/me/Desktop/svn_test/trunk
Then import myDir directory to the repository.
svn import myDir/ file://home/me/Desktop/svn_test/trunk
So far svn checkout, commit, update works fine.
Now, I want to create branch from the repository, so I followed the tutorial and executed:
( svn copy source destination )
svn copy file:///home/me/Desktop/svn_test/trunk file:///home/me/Desktop/svn_test/branches
Then I got:
svn: Unable to open an ra_local session to URL
svn: Unable to open repository 'file:///home/me/Desktop/svn_test'
What am I doing wrong here?
After carefully examine the sample command, I found out there are backslashes like below, what are those? (and still get error)
svn copy file:///home/me/Desktop/svn_test/trunk \ file:///home/me/Desktop/svn_test/branches \ -m "test"
svn: Cannot mix repository and working copy sources