Before your team can collaborate on ReqView projects managed in SVN as described in Team Collaboration > Subversion you should install SVN on your computer, set up an SVN repository and import the projects into SVN.
You can download SVN command line tools for your platform from Apache Subversion page. It is also bundled with many popular SVN GUI clients, such as Tortoise SVN for Windows after enabling command line client tools install option.
You can verify if the installation was successful by the following command:
$ svn --version
If svn
command is not found, make sure that Subversion executable binary is present in the system or the user environment variable PATH
.
You can simply install an SVN repository on your PC in a few steps:
Create a parent directory C:\SVN where you will place your SVN repositories (Windows example):
$ mkdir C:\SVN
Create a new repository ReqView under C:\SVN:
$ svnadmin create C:\SVN\ReqView
More information is described in Apache Subversion: Quick Start > Setting up a local repository. For production use, your network administrator should set up a remote SVN repository for your ReqView projects on your intranet or in cloud. For more information see SVN Book > Choosing a Server Configuration.
SVN repositories can be very flexibly structured into sub-folders to manage your project(s). You can choose if you want to store a single project or multiple projects in the repository, see Recommended Repository Layout.
Single-project SVN repositories have typically trunk, branches, and tags sub-folders at the top level to store the main branch, development branches and baselines. Multi-project SVN repositories are typically structured into sub-folders by projects at the top level and each project then have the same structure as described for single-project SVN repositories.
You can import your ReqView Project Folder into a single-project SVN repository as follows:
<reqview_project>
├───tags
└───trunk
├───attachments
└───documents
svn import
command:$ svn import file:///C:/SVN/ReqView -m "Initial import of ReqView project"