I want to add a user in svn on an Ubuntu machine, how would I go about doing that?
feedback
|
migrated from stackoverflow.com Sep 19 '09 at 12:16
This question came from our site for professional and enthusiast programmers.
|
In your SVN repo (note: not the checkout) there is a directory called "
Read the notes at the top of those files and you should be able to add a new user and configure their read/write access to the repo. | |||
|
feedback
|
|
In case you are using HTTP/WebDAV access:
The user should now be active on the repository. If you also have per-directory access control set up, follow these steps as well:
Here is a sample per-directory access file:
| |||
|
feedback
|
|
I found a few examples that does what you want. It does however depend on how subversion was installed (web or no web). http://www.subversionary.org/howto/setting-up-a-subversion-server-on-ubuntu-gutsy-gibbon-server http://www.howtoforge.com/subversion-trac-virtual-hosts-on-ubuntu-server | |||
|
feedback
|
|
Go to conf Directory in your repo Open svnserver.conf and uncomment/add these lines if they are already not. Open file named passwd in conf directory to add users, one way to add users easily is to add a line for the new user account in the format "user=password" (no quotes) to the file Hope that helps .. :) Thanks, | |||
|
feedback
|