views:

53

answers:

2

Hi,

I have a .Net web application that I want to take a copy of and create a new application that can be worked on independently of the first - i.e. I want to branch the codebase.

What is the best way of going about this ?

TIA,

Tim.

+1  A: 

Presuming you've taken a local copy of the website, you can just copy and paste the web's root folder in explorer. I'm not sure what kind of branching facilities sourcethiefsafe has, but you can add the new copy to your repository wherever you see fit.

AdamRalph
Thanks for the quick response - what will happen though to all the references in the solution/project file - can I just rename things ?
are you referring to references to non GAC assemblies? if so, and any are broken, you should just be able to add them back in via the VS GUI
AdamRalph
A: 

Download VisualSVN Server, install it locally (takes 5 minutes) and create a repository for your project. Then create a branch.

Matt Hinze
I would also recommend using VisualSVN over VSS but it looks like the question is being asked in a VSS context (see the tags)
AdamRalph