Access SVN from local and remote computers using Visual Studio plugins

I am new to version control. I have several computers on my home network and a remote computer, each of which has Visual Studio. I want to configure an SVN server on one of my local computers; then I want to access the repository from all local computers and remotely with Visual Studio plugins such as VisualSvn . Can this be done (worry about the remote machine)? Thanks!

+4
source share
2 answers

Yes, this can be done if you have the ability to connect and firewall between the remote computer and your network. You can redirect through a router to your SVN server and remotely access VisualSVN using an external IP address, or configure a VPN connection to your network and remotely access it.

+2
source

Another option is to use Subversion in file repository mode. This basically allows you to create a repository in a local directory.

This mode allows other SVN clients to connect to the shared repository.

This is the repositroy mode that I use with the SVN Visual Studio Agent plugin and it works well.

+4
source

Source: https://habr.com/ru/post/1395512/


All Articles