1. Svn commands on server
Create a repository – in order to create a svn repository(server) you need access on the server machine. The command can work only locally and it can not work on network paths:
// Windows: svn admin c:\\svn\serverfiles\ // Linux: svn admin /svn/serverfiles/
Start the server – to start a server you must run the following command(if svnserver is not present in the path you can add it or you can use the full pathname).:
//Windows: svnserve --daemon --root c:\\svn\serverfiles\ Continue reading