Working With Subversion and Visual Studio

Introduction

This article demonstrates how to install and configure the open source version control "Subversion" which we can integrate into and work with in Visual Studio 2008. This article starts with the installation steps of SubVersion. After that is an explanation of how to integrate with Visual Studio and some basic functionalities of SubVersion.

Installation

Steps 1: I have installed the subversion exe "AnkhSvn-2.3.10509.1073" which is installed as a plugin in Visual Studio and for managing the repositories (similar to a work space in TFS).

AnkhSvn DownloadLink

Step 2: After that install the UI tool "TortoiseSVN". TortoiseSVN is an easy-to-use SCM / source control software for Microsoft Windows.

TortoiseSVN Download Link

Step 3: After installiing both, we need to choose the source control as subversion instead of TFS in Visual Studio:

In VS menu -> Tools -> option --> Select SubVersion option

subversion1.gif

Step 4: There are some differences when compared to TFS; in TFS we first create a workspace but in Subversion first we'll create the repositories by just right-clicking the folder and selecting TortoiseSVN -> Create repository, as shown below:

subversion2.gif

Step 5: By default, subversion repositories have their own folder structure; first it'll ask you to create that structure:

subversion3.gif

Step 6: After creating the repositories we need to add our files to it. To add the files right-click the Solution in Visual Studio and choose the options:

  • Add Solution to Subversion
  • Add Selected Projects to Subversion

Once the files has been added to the repositories, we can see the files in the attached repositories as shown below:

subversion4.gif

The check-in/check-out is different from TFS. In Subversion check-in is called "Commit" and the symbols also change; we'll see a green tick for check-in and red tick for check-out.

subversion5.gif

To get the latest of a specific version, we have the following option as compared to TFS:

subversion6.gif

Summary

Using "SubVersion" source control has some advantages over TFS and if you try to use it then you will see the differences.

  • First its free of cost - open source version control
  • An easy to install and use component, supported for use in Visual Studio
  • Ready to setup our own version control system

Up Next
    Ebook Download
    View all
    Learn
    View all