How to create SVN repository on server? Although i have found various articles on this but still facing issues while creating repository on my website. Right now i am using assembla as my SVN repository, but want to create my own on my hosting.
How to create SVN repository on server? Although i have found various articles on
Share
Create a Repository:
svnadmin create /svnreposCreate a SVN User
vi /svnrepos/conf/svnserve.confAnd add users in the format:
user = passwordE.g.:
tony = mypasswordImport Your Project
(Assuming you’ve put your project files in
/projects/myrailsproject)svn import /projects/myrailsproject file:///svnrepos/myrailsprojectStart the SVN Server as Daemon
svnserve -dDone! You should now have an Apache Subversion server running with one project named myrailsproject.
Try checking it out of the repository:
svn co svn://192.168.0.2/svnrepos/myyrailsprojectSince we set anon-access to none you should be prompted for username and password which you created in the file
/svnrepos/conf/passwd.