vote up 3 vote down star

Possible Duplicate:
Best Version control for lone developer

There's been a lot of discussion about source control on here, but I was wondering if someone could suggest a good, simple source control system for an individual,

At work we use Surround, and it's cool, but not cheap. I've messed around with Git, and it's cool, but it seems to have a lot of features for disconnected teams.

Basically I want a really simple system that allows me to:

  1. Version files individually. Just save my files, but one at a time, and with a version# and a comment.
  2. Roll back a given file to a previous version.
  3. Create a branch of the whole thing for separate product versions.
  4. And Ideally it would have a VS.NET integration.

The merge stuff I'd rather handle with a 3rd party tool like WinMerge or P4Merge.

So, I figured if anyone would know it'd be you guys. Any ideas?

flag

79% accept rate
well, when you say exact duplicate you really mean 'sort of similar' because his constraints were completely different than mine. I'm not working on different machines and I'm never working offline. – LoveMeSomeCode Oct 16 at 13:42

closed as exact duplicate by Bill the Lizard Oct 16 at 12:39

7 Answers

vote up 11 vote down check

Subversion and the Tortoise SVN plugin

link|flag
Don't forget AnkhSVN for Visual Studio integration. – J. Random Coder Oct 15 at 15:57
thats what i went with. not sure about it yet, but I got free hosting at xp-dev and the plugin seems to work, so thanks for the advice! – LoveMeSomeCode Oct 15 at 20:08
vote up 1 vote down

Subversion is a pretty simple source control system and its completely free. You can set up your own server if you want, but there are plenty of hosting options for you. A free one that I use is http://www.xp-dev.com/ (its also has issue tracking and project management tools if you need them). It can be easily used from the command line or through one of the free GUIs you can get. Tortiose SVN and RapidSVN just to name a few.

link|flag
vote up 1 vote down

Subversion, and you can even setup a host server on your PC in 3 clicks with http://www.visualsvn.com/server/

link|flag
vote up 1 vote down

I'm using Git even on personal projects where I'm alone.
It's pretty neat to be able to commit to a project even when I'm not at home with an internet connexion and to be able just to push to the distant repository when I'm back.

link|flag
vote up 0 vote down

perforce.com

Does me @home and its free =>

link|flag
vote up 0 vote down

How about Vault I think its still free for single users I think one of its selling points is VS integration.

link|flag
vote up 0 vote down

For an individual I personally choose local Mercurial and forget about any server setups, which are an overkill.

This could be helpful: How should I use Mercurial as a lone developer?

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.