On page 48, near the top of the page, the example reads:
$ svn switch file:////home/bill/...
U hello.c
Updated to revision 7.
It should really say "revision 6", not "revision 7".
Thanks to Sumio Kiyooka for pointing this out.
On page 48, near the top of the page, the example reads:
$ svn switch file:////home/bill/...
U hello.c
Updated to revision 7.
It should really say "revision 6", not "revision 7".
Thanks to Sumio Kiyooka for pointing this out.
Many thanks to Kevin Grover for pointing out the following correction:
Page 33, Section 3.4.2 "Setting up Access"
These URLs:
http://svn.example.com/srv/svnrepositories/repos_uno
and
http://svn.example.com/srv/svnrepositories/repos_dos
SHOULD BE
http://svn.example.com/repos/repos_uno
and
http://svn.example.com/repos/repos_dos
to be consistent with the httpd.conf snippet.
On page 39, I show data being imported into a repository using the following line:
svn import --message "Initial import" repos file:///home/bill/repositories/my_repository
On the surrounding pages though, the repository is located in /home/bill/my_repository and should also be referenced the same here, making the correct line:
svn import --message "Initial import" repos file:///home/bill/my_repository
Many thanks to Michael Gleen for pointing this out.
On page 163, the line
/usr/bin/svnlook log --transaction "$TXN" "$RPS" > /var/log/txn.log
should read
/usr/bin/svnlook log --transaction "$TXN" "$RPS" >> /var/log/txn.log
(Notice the > has been changed to a >>)
Many thanks to James Leinweber for noticing and reporting this error.