-----Original Message-----
From: ken carlino [mailto:ken.carlino@gmail.com]
Sent: Tuesday, March 06, 2007 5:58 PM
To: users@subversion.tigris.org
Subject: Re: svn: No repository found
On 3/5/07, ken carlino <ken.carlino@gmail.com> wrote:
> Hi,
>
> I am trying to check out from subversion using this command:
> svn co svn://67.123.51.1/repositories/sample
> but I get this error:
> svn: No repository found in 'svn://67.123.51.1/repositories/sample'
>
> But when I telnet to 67.123.51.1, there is a directory in
> /srv/svn/repositories/sample.
>
> Can you please tell me what am I missing?
>
> Thank you.
>
What is the svnserve root?
It looks like you are not matching the path that svnserve has. Your
url should be relative to what svnserve has. Svn will work on where the
repository is, not the directory above
i.e. Repository is in /usr/local/subversion/repos/freakydata
svnserve is launched with svnserve -d -r
/usr/local/subversion/repos/
Your svn command should be
svn ls svn://myserver/freakydata
These will NOT work
svn ls svn://myserver/usr/local/subversion/repos/freakydata
svn ls svn://myserver/
So you probably want
svn ls svn://67.123.51.1/sample
I would do an svn ls first to make sure you really are where you want to
be
Clyde
This email (including any attachments) may contain material
that is confidential and privileged and is for the sole use of
the intended recipient. Any review, reliance or distribution by
others or forwarding without express permission is strictly
prohibited. If you are not the intended recipient, please
contact the sender and delete all copies.
Exelixis, Inc. reserves the right, to the extent and under
circumstances permitted by applicable law, to retain, monitor
and intercept e-mail messages to and from its systems.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Thu Mar 8 17:43:28 2007