Reputation: 1013
I'm using ubuntu and I'm following basic tutorial about how to use svn.
I followed the instructions in the book but it shows error when I try to import after I created a repository.
Here are my screenshot of what I've done.
Can you help me and tell me what the problem is?
Thanks in advance!
Upvotes: 1
Views: 4735
Reputation: 30662
The file://
URL you enter is incorrect because it's incomplete. You have to specify the full path to the repository on your local filesystem since you access the repository directly. So in your case the URL will be as in this command-line:
svn import ./likeU file:///home/seoyoung/repository
Read SVNBook!
Upvotes: 2