vote up 6 vote down star
3

Can anyone recommend a source control solution for Visual Studio? I am going to be the only person using it, I just need something to back up my data every so often or before I undertake a big change in the software. I tried AnkhSVN, but this requires an SVN server. Is there anything that can be used locally that takes to pain of copy solution folders manually?

flag

Which version of Visual Studio do you have? Specifically is it a Team Edition? – Shiraz Bhaiji Jul 27 at 13:02
So many dupes for this. Did you even try searching before you asked this question? – Neil Butterworth Jul 27 at 13:03
5  
Yes. All were to do with server based solutions working in a team. I spent a good half hour searching for a local solution on SO and google. I just didn't realise you could make local SVN repos. – Callum Rogers Jul 27 at 13:10

11 Answers

vote up 24 vote down check

With Subversion you can create local, file-system-based repositories for single-user access.

Probably the easiest way to use subversion (on windows) is to install TortoiseSVN. To create a repository, you simply create an empty folder in the location where you want the repository to be, right click that folder and select "TortoiseSVN -> Create repository here".

It is even possible (but not recommended) to create such a repository on a network share.

You can then access local repositories using a file-URL e.g: file:///D:/Projects/MyRepository

If you later find out that you need a server (e.g. to give other users access to the repository), you can easily install svnserve on a server and move the local repository to that server.


Just for completeness: as others have noted, there are several good clients for subversion (personally I'm using mainly TortoiseSVN and AnkhSVN):

link|flag
But how? It says I need a "Repository URL", and if its something to do with localhost/127.0.0.1, I don't have a local server set up. – Callum Rogers Jul 27 at 13:00
1  
First you create a local repository. svnadmin create c:\temp\mysvn\ As the repository URL, you just use file://c:\temp\mysvn\ – nos Jul 27 at 13:05
Thank you, this worked. – Callum Rogers Jul 27 at 13:07
1  
Honestly, I don't know why people are starting with a VCS like Subversion when better tools are available (Mercurial, Git). In my not so humble opinion: pick a DVCS over a central VCS like Subversion in this situation. – Sardaukar Jul 27 at 13:47
2  
mercurial and git is probably cool, but why bother if subversion does the job for you, is simpler to learn, with excellent IDE integration ? That's my not so humble opinion. – nos Jul 27 at 14:38
show 1 more comment
vote up 8 vote down

Funny nobody mentioned Git just yet. Granted, it does have a learning curve, but I've been using it successfully within Visual Studio for the past year. Both commandline and with a GUI (GitExtensions).

Download Git for Windows from here.

Since it is a DVCS, it doesn't need a server. You can work against your local repositories publishing them to the world when needed (check out Github).

link|flag
Git is what I'd use in the same situation. – T.E.D. Jul 27 at 13:44
I'll try git as well. – Callum Rogers Jul 27 at 14:26
If you do, just click his GitExtensions link and install that. It comes with Git. – T.E.D. Jul 27 at 17:33
I usually install Git separately from GitExtensions. GitExtensions tends to lag behind with the combined Git installation. – Sardaukar Aug 3 at 7:11
vote up 7 vote down

You can use AnkhSVN (or any other SVN client) without a server. Just create a repository on your local disk and then point your working copy to it using a URL like file:///C:/Repositories/repo.

AnkhSVN has improved a lot, but I prefer VisualSVN myself. I think its interface is a little easier to work with (especially if you're used to TortoiseSVN, which it is based on) and it will handle things like automatically setting your build folders as ignored. It is commercial, but it is inexpensive.

link|flag
VisualSVN is not free. – Callum Rogers Jul 27 at 13:04
I did point that out, and the question didn't specifically request free software. – Nick Meyer Jul 27 at 13:06
Sorry, anyway thanks for the suggestions. – Callum Rogers Jul 27 at 13:09
vote up 4 vote down

You can use Mercurial: http://mercurial.selenic.com/wiki/. It's free, fast and easy to use. I use it for my personal projects.

link|flag
vote up 3 vote down

VisualSVN can operate without SVN server/

link|flag
vote up 2 vote down

I'm pretty sure that you can create a local repository with Tortoise SVN and use it with ankhSVN without a server.

link|flag
vote up 2 vote down

SVN is the way to go. I would look at using the VisualSVN plugin rather than anksvn as it is much more modern and worth every penny.

link|flag
vote up 1 vote down

I use Bazaar with Visual Studio. It does not have Visual Studio integration but it is easy enough to issue commands from the command prompt in a separate console.

link|flag
vote up 1 vote down

You can use Dropbox with SVN, which is free. Sign up for one here. If you didn't like that first article, here's another one. You can pretty much google SVN Dropbox and you'll get all the information you need if these two posts are missing anything.

The advantage of using a Dropbox over local SVN is that you'll be able to get to your dropbox from anywhere, as opposed to only being able to SVN while at home.

link|flag
It looks like your first link is broken. – Nick Meyer Jul 27 at 13:04
Ah it tried formatting the link's underscores. – Sneakyness Jul 27 at 13:13
vote up 1 vote down

In a similar situation I'd go download and install Git Extensions. That's all.

That gives you a world-class revision control system (the same one used for the Linux kernel), integrated into Visual Studio and Windows Explorer. No server is required. However, it is fairly easy to set one up later if you want one.

link|flag
vote up 0 vote down

They are a lot of cheep or free (for small teams) hosted source code control system. So if you wish to advoid running your own server rathern then not use a server at all, you should look at them.

link|flag

Your Answer

Get an OpenID
or

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