You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Ben Collins-Sussman <su...@collab.net> on 2004/05/04 01:57:36 UTC

Re: svnserver on win xp home: is it started up?

Jonathan Boutelle wrote:
> When I run svnserve -d it seems to start up fine.
> 
> But when I do svn checkout svn://localhost:3690 it produces the 
> following error
> "No repository found in "svn:localhost://3690"
> 
> Now I have made a repository (in fact, I've made two, one with 
> tortoiseSVN, one with the command line).
> 
> Any pointers as to what I'm doing wrong?

You don't need the 3690 bit;  that's the default port.

Just try 'svn checkout svn://localhost/absolute/path/to/repository'


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: svnserver on win xp home: is it started up?

Posted by Jonathan Boutelle <jo...@uzanto.com>.
Thanks sussman,

What ended up working for me was specifying the repository on startup like 
so: svnserve -d -r c:\a\f_repos

Then I specified the repository when doing checkout like so: 
svn://localhost:3690/a/f_repos

The key piece of information that I didn't have was that you don't specify 
the drive name when checking out, even though you do when starting up the 
repository. Counterintuitive!

Below are my notes, for the benefit of anyone looking through the archives 
a few months from now trying to do the same thing on a windows machine.

INSTALL
0)Start out with C:\a\f_codebase, the code you want to import
1)Install subversion and tortoiseSVN
2)Make new directory (C:\a\f_repos)
3)Right click "create repository here'

4)add password file (called password.txt). Looks like this:
[users]
user1=password
user2=password

5)modify svnserve.conf to point to it and have a realm. Looks like this:
[general]
password-db = passwords.txt
realm = My First Repository

6)start up svnserve -d -r c:\a\f_repos

IMPORT CODE
7)Right-click f_codebase. select "import" (see the files import 1 by one
8)Right-click f_repos, select "repo browser". yup it is there

CHECK OUT CODE
9)Make new directory (C:\a\f_clientdir)
10)Right click->checkout. Specify svn://localhost:3690/a/f_repos


At 06:57 PM 5/3/2004, Ben Collins-Sussman wrote:
>Jonathan Boutelle wrote:
>>When I run svnserve -d it seems to start up fine.
>>But when I do svn checkout svn://localhost:3690 it produces the following 
>>error
>>"No repository found in "svn:localhost://3690"
>>Now I have made a repository (in fact, I've made two, one with 
>>tortoiseSVN, one with the command line).
>>Any pointers as to what I'm doing wrong?
>
>You don't need the 3690 bit;  that's the default port.
>
>Just try 'svn checkout svn://localhost/absolute/path/to/repository'

----^-------^------^--------^-------^
Jon Boutelle
Principal, Uzanto Consulting
San Francisco, CA

Phone: 510-708-9825
urls: www.uzanto.com
www.jonathanboutelle.com
----^-------^------^--------^-------^



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org