Visual Studio Source Control

  • Thread starter Thread starter POB
  • Start date Start date

POB

POB

Soldato
Joined
27 May 2003
Posts
5,948
Location
Its a Small World
Can anyone suggest a good solution for source code control and versioning when working with VS2010?

Needs to work with ASP.NET services and sites.

I'm the only developer so it does not need elaborate team management systems or even hosting on a separate box.

At the moment I'm making lots of copies of files each day it its getting silly.:rolleyes:

Thanks
 
There's two developers in our workplace me and another guy and we use Team Foundation Server 2010. Easy to setup, excellent source control and integrates with VS2010 seamlessly. Not sure on the cost of it as we have a campus license so get it cheap.
 
I should have added as it might not be immediately obvious but you don't need to run subversion from a server. If your using tourtisesvn you can right click and hit create repo in a folder then checkout using file://path.
 
Git or Mercurial are your only sensible options. SVN is deprecated now, really. Along with all the other first-gen attempts like CVS, VSS & TFS.

We use Mercurial and, my god, it is simply brilliant. It's how I always imagined and wished for source control to be.
 
Wow thanks for all the ideas, 1 millions options later ...

I have selected VisualSVN as its only me, it looks easy and avoids command prompts etc.

I'm sure it will do the job much better then duplicating folders in explorer.
 
Definitely hg/git, you can use it locally without the need for a central server or with so it can grow with your needs. I use git form the command line but there is some good GUI tools and VS integration bits if that's what you're after.

There's two developers in our workplace me and another guy and we use Team Foundation Server 2010. Easy to setup, excellent source control and integrates with VS2010 seamlessly. Not sure on the cost of it as we have a campus license so get it cheap.

He said a good solution for source control ;)
 
Also, if you're using Git or Subversion, take a look at www.unfuddle.com. They provide free and secure repository hosting for smaller projects. Even if what you are working on is pretty small, the fact that you are effectively backing up your code to the cloud is a good thing.
 
Back
Top Bottom