user3415167
user3415167

Reputation: 1013

svn import error: unable to connect to a repository at URL

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.

enter image description here

Can you help me and tell me what the problem is?

Thanks in advance!

Upvotes: 1

Views: 4735

Answers (1)

bahrep
bahrep

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

Related Questions