Good resource and guide - http://forum.assembla.com/
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
September 15, 2008 5:55pm
Subscribe [6]#16 / Nov 06, 2008 10:04pm
Good resource and guide - http://forum.assembla.com/
#17 / Nov 08, 2008 7:55pm
Don’t know if this will work for you but
I installed VisualSVN server on an old windows computer of mine (http://www.visualsvn.com/server/)
I then installed TortoiseSVN on my laptop.
No command line was involved 😊
#18 / Nov 09, 2008 11:11am
I’m a full fanatic of Command Line SVN.
I’ve worked with the Mac Clients quite a bit, and they’re really not too helpful. As soon as there are any conflicts they just break down.
I believe leopard comes with SVN already (and rsync too 😊 ), so to get started, just fire up a terminal, cd into your directory and start using svn.
cd Sites/mysite/
svn co <a href="http://code.myrepo.com/project/">http://code.myrepo.com/project/</a> .
.... do stuff here
svn up
svn add some/files/
svn ci -m 'Added some great files'
svn up#19 / Nov 09, 2008 1:09pm
There’s a battle going on right now between Cornerstone and Versions for the new SVN client. I’ve been using Versions but I’ve also heard good things about Cornerstone too. They make things a lot easier and a lot faster. Sometimes though, like Elliot, I prefer just jumping to the command line to take care of things (like tagging).