meds
meds

Reputation: 22916

Whats the easiest way to setup a local subversion server?

I'm really not well versed in these things, I just want to setup an svn server locally on my computer. Also I'd like to set it up and integrate it directly into Visual Studio 2008 if it's possible?

thanks for any help!

Upvotes: 14

Views: 29149

Answers (8)

Josh E
Josh E

Reputation: 7424

Rick Strahl, FTW!

Another great walk-through on setting up SVN with Windows comes from Jeff Atwood of Coding Horror:

Setting up Subversion on Windows

In a nutshell:

  1. Download/Install SVN, configure as windows service
  2. Install TortoiseSVN (or your SVN GUI of choice). I recommend sticking with Tortoise, since there have been anecdotal horror stories of using SVN clients integrated with VS
  3. Create a repository (either through CLI or GUI client

Upvotes: 4

Rick Strahl
Rick Strahl

Reputation: 17651

I would second Visual SVN server which is free and will have you up and running in a few minutes. It hooks up SVN over HTTP however and for a local Subversion installation that might not be necesary.

If you'd rather run just setup Subversion 'manualy' the following is a walk through of the process with focus on Visual Studio usage: http://www.west-wind.com/presentations/subversion/

Upvotes: 8

Khan
Khan

Reputation: 516

Check for http://www.visualsvn.com/ for the server and TortoiseSVN for the client. Check for AnkhSVN for integration with Visual studio 2008.

Upvotes: 6

Lucas B
Lucas B

Reputation: 12013

I recommend using subversion as a local host for the files with tortoise tortoise for browse integration or/and ankhsvn for intergration with vs2008.

Upvotes: 3

Rigobert Song
Rigobert Song

Reputation: 2784

I would recommend Toirtoise SVN its fairly easy to setup and use.

Here is the documentation, its a must!

Upvotes: 1

ist_lion
ist_lion

Reputation: 3209

http://www.visualsvn.com/ That should help with your integration issues

Upvotes: 4

jcollum
jcollum

Reputation: 46569

I used TortoiseSVN, created a directory (C:\Repositories) then used the menu command "Create Repository Here...".

Upvotes: 31

Will Hartung
Will Hartung

Reputation: 118593

Just create a local svn repository and use a file:// based urls for them source code. Shouldn't need to have a specific. running, server instance for this.

Upvotes: 8

Related Questions