On Jun 10, 2010, at 07:47, Birdsell, John - OIG wrote: > I have read: svnbook.red-bean.com for 1.6 and “Pragmatic Version Control > using Subversion 2nd ed.” And I’m more confused now than before I began.
Sorry to hear that! I found the Red Bean book quite clear and helpful, starting with no version control background. > All of the examples seem to have everything on a single box, I haven't read Pragmatic Version Control but in the Red Bean book that's certainly not the case. See for example: http://svnbook.red-bean.com/en/1.5/svn.basic.in-action.html#svn.advanced.reposurls > and I have been able to set up a test repos on the test box, but I must be in > the svn bin directory as root to execute any command, unlike the examples > that have you executing commands from different directories. That should not be. What happens otherwise? What are the permissions of the svn command? > All directories that I set up have group read write execute permissions. > > Question 1, How should I have groups and users set up so that I can execute > from any directory? > > I cant find any examples of accessing a repository that is on a different > system UNIX -> Win or Win -> UNIX. > > Question 2, What would the syntax be for that? Set up a server: http://svnbook.red-bean.com/en/1.5/svn.serverconfig.html Then just access the repository's URL. Depending on what server you choose, your URL might begin with http, https, svn or svn+ssh. > Question 3, What is the default port for svn? It depends on the protocol you use: http: 80 https: 443 svn: 3690 svn+ssh: 22 For any of these you can change the port to something nonstandard if desired.