http://www.rixler.com/
Recently I found quite intresting tool – Google SketchUp – free 3D modeling tool. It has also Pro version for which you can get 8 hours trial..
Home site: http://sketchup.google.com/product/
Here you can find svn server installer:
Create repository: svnadmin create “d:\repository”
Within that newly created folder, uncomment the following lines in the conf/svnserve.conf file by removing the pound character from the start of each line:
anon-access = none auth-access = write password-db = passwd
Next, add some users to the conf/passwd file. You can uncomment the default harry and sally users to play with, or add your own:
harry = harryssecret sally = sallyssecret
As of Subversion 1.4, you can easily install Subversion as a Windows service, so it’s always available. Just issue the following command:
sc create svnserver binpath= "c:\svn\bin\svnserve.exe --service -r c:\svn\repository" displayname= "Subversion" depend= Tcpip start= auto
It’s set to auto-start so it will start up automatically when the server is rebooted, but it’s not running yet. Let’s fix that:
net start svnserver
Now let’s verify that things are working locally by adding a root-level folder in source control for our new project, aptly named myproject.
set SVN_EDITOR=c:\windows\system32\notepad.exe svn mkdir svn://localhost/myproject
svn mkdir svn://localhost/myproject Authentication realm: <svn://localhost:3690> Password for 'Administrator': [enter] Authentication realm: <svn://localhost:3690> Username: sally Password for 'sally': ************ Committed revision 1.
Thats it.