[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: feedback: first step failed

From: Henderson, Michael D <michael.d.henderson_at_lmco.com>
Date: 2004-08-24 16:33:42 CEST

Oops, hit send too soon...

> From: Rolf Schumacher
> Question: How long should an avarage developer wait until Subversion
is mature enough to be usable?

The average developer should use Subversion as soon as the developer is
mature enough to use it.

> I cannot find how to add a new user with access to the repository or
find some other philosphy of access control.

Create a directory owned by your svn account (let's call it /local/svn/.
Create a repository there. Run the svn server in the background (
svnserve -d -r /local/svn/ ). Verify that it's running (ps is nice
tool).

Go to the conf subdirectory (/local/svn/conf/ in this case). Update the
server.conf file to match your setup

        [general]
        anon-access = none
        auth-access = write
        password-db = passwd
        realm = yourhost

Add the user's account name and plain-text password to the passwd file

        [users]
        thor = aPassWord

Have your other account access the repository using svn://yourhost/,
using the account name and password you just created.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Aug 24 16:34:26 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.