Jame
Jame

Reputation: 22190

Online SVN tools?

I am developing a project with distributed team, For this i am looking for some online tool which helps in maintaining versions of data. More Specifically i need check in and check out facility so that only a single person can work on a single file at a time.

Before this all of us resides in single building and are connected through Intranet and there we use Microsoft Visual Safe Source, so in simple words i need some online tool that provide more or the same functionality as MS VSS provides. My preference is to go for some open source tools.

Upvotes: 0

Views: 795

Answers (3)

orip
orip

Reputation: 75437

The workflow you're thinking of is provided by Subversion. A google search will find many online subversion hosters.

While distributed version control offers more facilities, it won't provide the kind of workflow you're used to and therefore take longer for you to learn.

Upvotes: 1

Rob Agar
Rob Agar

Reputation: 12459

Svn has more or less been superceded by distributed source control systems like Mercurial and Git. Check out BitBucket (based on Mercurial) or Github (Git). Either will do what you need, and be a lot nicer to use than VSS or SVN. [edit] apart from the oldschool VSS style single user check out/check in thing. Are you sure you need that?

Upvotes: 1

Mitch Wheat
Mitch Wheat

Reputation: 300579

Mercurial and Git are fast becoming the SCC of choice.

I still use Subversion (via Visual SVN) at home. Subversion can be configured for remote access

Subversion on Windows with Remote Access

Upvotes: 1

Related Questions