Adding new project & Adding New users to SVN Server
Creating new projects in the SVN
Change to the repository directory
# cd svn 
Create the repository with svnadmin 
# svnadmin create new_porject_name
[groups 
new_project_group_name = user1, user2
[new_project_name: 
@new_project_group_name=rw
@userx = rw 
Now give change the owner ship svn 
# chown -R apache. 
Now import the initial folders to the project [brancks , , 
# svn import -m 'Initial import' /tmp/svn 
Now edit the svnserve . conf 
# vi conf svnserve . conf 
## Disable anonymous access ##
## Enable access control ##
Now your project is created and can be access 
Adding new user to SVN repository 
# htpasswd -m /etc/svn-auth 
New password:
Re-type new password:
Adding password for user testuser2
Add the users to svn 
[groups 
new_project_group_name = user1, user2, testuser2
[new_project_name: 
@new_project_group_name=rw
@testuser2 = rw 
Other Related links: 
Keywords: Subversion, SVN, SVN Server, Adding Users on SVN Server, Backup SVN, Restore SVN.
 
Comments
Post a Comment