Some favorite site feeds aggregated locally: iPhone Development RSS   Adobe Labs RSS   Macrumors RSS

Thursday, February 28, 2008

Another free SVN service

Thursday, February 28, 2008   

If you're comfortable with the contents of your SVN repositories sitting in a cloud outside your corporate firewall, etc. I have found a really decent SVN service thats free and offers quite a lot. Yes, Google Code is cool, but it doesn't seem to offer the same kind of feature plans. Which service is this? Assembla.



FREE ACCOUNT:
  • Unlimited team size
  • Public or Private (invited members only)
  • Subversion - the standard in SCM
  • Trac - development tickets and timeline
  • Integrated Ticket tool
  • Wiki
  • Milestones, Tasks, and Discussions
  • Alerts: Real-time email, batch email, or RSS
  • File attachments
  • Chat
  • "Stand-up" or "Scrum" team member reports
  • Image Annotation
  • Time tracking and reporting
You can get more if you pay. Check out the tour to see all the stuff. The UI overall is kinda lame compared to some other UIs I've seen for online SVN (its not very Web 2.0), but the UI is acceptable given all the features you get for free, and you get 500MB space for free... thats a generous size when your projects contain AS3 and perhaps some MXML, JavaScript, etc. Even if you check in your resulting binaries, that's still a decent amount of storage.



That being said, I think I still prefer the simplicity of purpose of Beanstalk, and the UI for it is superior. You won't get as much storage, and you can only create a single repository for free of 15MB. Thats pretty small. You can get 250MB for $15/mo., 1GB for $25/mo., and 3GB for $50/mo. However, if you're going to need that much space, I think that you would probably suck it up and opt to just install SVN on a box on your network or something.
 
 Return to the main page
Comments:

There are currently 2 Comments:

Blogger metric152 said...
“Another really nice place is codespaces.com. I set up an account there for a project I'm working on and it's really nice. Great interface and they backup every version release. Very good free account also.”
 
Blogger dk said...
March 24, 2009 12:24 PM
“If you want free and portable SVN hosting just put SVN on a USB stick following the instructions below (note this works well for Windows, haven't tested it out in Linux yet ... but should work okay)

1. [url=http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91]Download svn[/url]

2. Unzip svn to your USB stick (let's say X:\svn-win32-1.5.6)

3. Follow the [url=http://blogs.vertigosoftware.com/teamsystem/archive/2006/01/16/Setting_up_a_Subversion_Server_under_Windows.aspx]instructions here[/url] on how to setup a new repository

4. Create a script: X:\startSVNServer.cmd with the following contents:
[code]svn-win32-1.5.6\bin\svnserve --daemon --root .\repository[/code]

5. Download and install Tortise SVN onto a Windows machine then copy the C:\Program Files\TortiseSVN folder to your USB stick X:\TortiseSVN

6. Then create a script X:\tortiseSVN.cmd with the following contents:
[code]start TortoiseSVN\bin\TortoiseProc.exe /command:repobrowser[/code]

7. Start the server using the "startSVNServer.cmd" script

8. Open ToriseSVN using the "tortiseSVN.cmd" script

9. Enter the url [code]svn://localhost[/code]

10. Voila! You have your own portable SVN repository”
 
 Leave a comment