Visual Studio Distributed Version Control and Sourceforge

I am trying to configure a new Windows computer with Visual Studio 2008 to work on a Sourceforge project that I support. I would like to use a distributed version control system (I tried SVN, I didnโ€™t like it).

I used git and mercurial before on UNIX, but I was not lucky to find a quality plugin that integrates with Visual Studio 2008 and allows me to work on Sourceforge code.

Can someone give some suggestions on how to move forward?

Should I just use Eclipse instead?

+4
source share
1 answer

I have been using Mercurial with VS 2008 for a while and found that the combination of TortoiseHg and the open hint command solves most of the problems. Before Mercurial, we used Microsoft Visual Source Safe (VSS) with Visual Studio integration. Even with the plugin, you still had to go into VSS to create projects and create some project controls, so you still need to know how to use the source control tools outside the IDE. After the change, I even played around with the idea of โ€‹โ€‹writing a Mercurial plugin for VS 2008. Before I could do this, I had to familiarize myself with Mercurial. While doing this, I found that it took a little time to get used to managing the source code outside the IDE, but now I prefer to use the command line and TortoiseHg tools for the VSS IDE plugin.

However, it seems that several plugins for Visual Studio are available for Visual Studio:

I have not tested them, so I can not give you an assessment of their usefulness.

Having never looked at the Eclipse plugin for Mercurial, I cannot say if this is better from the command line method used.

+3
source

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


All Articles