How do I host an existing Visual Studio solution under source control using VisualSVN Server?

I have an existing Visual Studio 2013 solution and I want to bring it under source control using VisualSVN Server. I installed VisualSVN Server and created a new empty repository. The Getting Started page does not explain how to add the folder structure and files to the repository. I am expecting the option to import or add files when right clicking on a node repository in the UI.

How do I add the deleting root folder and all its files and folders in a Visual Studio solution to the repository and make it ready so any SVN client can check out the files from it? I am planning on using TortoiseSVN as a client.

+3


source to share


1 answer


You need to install TortoiseSVN and check out your working copy of the repository. Copy from solution to working copy, select all files and right click and select TortoiseSVN β†’ Add .



Commit the changes , and now you have data added to the repository.

+2


source







All Articles