Gerard Samuel wrote:
> Im running FreeBSD 5.3.
> I have this in /etc/inetd.conf ->
> svn stream tcp nowait/4/4 root
> /usr/local/bin/svnserve svnserve -i -r /source/svn
>
> and restarted inetd.
>
> I can checkout using "file://" ->
> hivemind# svn checkout file:///source/svn/trunk project
> A project/foo.c
> A project/bar.c
> A project/Makefile
> Checked out revision 2.
>
> But I cannot seem to checkout using "svn://"
> hivemind# svn checkout svn://hivemind.trini0.org/project
> svn: URL 'svn://hivemind.trini0.org/project' doesn't exist
Look at your commands, in the file:// case, you checkout from
/source/svn/trunk
When using svnserve, the hostname is replaced by the argument given to -r, so
effectively that makes it
/source/svn/project
You probably wanted
svn co svn://hivemind.trini0.org/trunk project
Uli
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Nov 24 16:12:58 2004