Q1) What line needs to be at the top of each dummy file, as with an RCS versioning line? How is it structured? Where is it documented? There are no required lines for any file that is versioned within the Subversion repository. That said, you can choose to use "RCS-like keywords" wherever valid. Documentation is here: http://svnbook.red-bean.com/en/1.8/s....keywords.html Q2) What are the commands that get used in the two methods listed above? I'm going to assume you've setup Apache using "SVNParentPath" since it is FAR easier to create new repos with that setup than with "SVNPath". If you give the Apache account a shell (normally a security issue - but in reality a practical requirement when hosting repos), then login as the Apache account to the server. You can then do:
- "svnadmin create" to create the repo.
- "cd /tmp; svn checkout file:///path/to/repo" to get a working copy in /tmp
- "cd repo; ..." to setup the initial structure.
- "svn checkin" to get the initial structure up into the repository.
command="/usr/bin/svnserve -t --tunnel-user=acct10001 -r /opt/repo",no-port-forwarding,no-pty,no-agent-forwarding,no-X11-forwarding public-key-for-account-acct10001
Note that the "-r /opt/repo" specifies the root of the search for repositories. That way the URL only needs the repo name. When SSH sees the request it will match the private key of the caller to the public key on that line (see the end of line). Then SSH will invoke that command - which identifies the specific account to which the operation should be registered (and authorized if you've turned on AuthZ).