1

I'm trying to checkout a project from a remote repository. I'm on linux and I have connected through ssh

I'm trying to execute the following command

first I tried

svn co svn:://<ip address>/<repo path>

and it says

svn: Client error in parsing arguments

svn co svn:://<ip address>/<repo path> .

and it says (Please not the . I added at the end of the line)

svn: 'svn:://' does not appear to be a URL

I'm sure the path is correct

Does any one could help me

thanks in advance

1
  • Doesn't the error message tell you exactly what is wrong?? svn: 'svn:://' does not appear to be a URL Commented Jun 6, 2011 at 22:30

1 Answer 1

3

Change it to:

svn co svn://<ip address>/<repo path> .

You have an error - there is no double colons there. You have http://, https://, ftp:// and svn://. All of them use single colon.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.