I am using c# express and would like to use a free version control system. Please share your recommendations.
|
|
|||||||||
|
|
|
Personally, I hate the tortoise type clients, mainly because Explorer frustrates the hell out of me and isn't a good file-system browser at all.. I choose an unorthodox approach and install NetBeans and use the "favorites" tab to add locations for versioned file systems I wish to manage. I use this approach for Visual Stuido. My prior tool was WinCVS. |
||
|
|
|
|
It seems to me you are new to Version Control. If you haven't used source control before, I recommend looking at a distributed version control system (DVCS) directly. My choice was Mercurial, because it has excellent documentation, a clean and consistent interface, works well on all major platforms (using it on Windows, Linux and MacOSX) and a great support for PlugIns (several are officially redistributed, such as mq) that let you do very advanced stuff. There are great GUIs available (TortoiseHG, but also standalone). It has a nice introduction here. Popular DVCS include: Mercurial, Git and Bazaar but in the end it doesn't matter which tool you choose There is lots of information here on SO about comparisons. The best IDE PlugIn is don't use on. I think IDE integration is not necessary when working with a dvcs. When working in a centralized System, it is reasonable for the purpose of automatic check out on edit. However, I like keeping things seperate. I don't want my IDE cluttered up. I don't see any benefits in using a plugin compared to a standalone solution (that I keep running on a second monitor etc. ). I am fine with TortoiseHG and the command line for more complicated tasks. |
|||
|
|
|
|
Subversion along with AnkhSVN plugin for VStudio and TortoiseSVN plugin for the windows explorer. It tracks folders as well as files and keeps history on renames. Those are really useful for refactoring your code. Edit: forget about AnkhSVn in VisualStudio Express because it can't load plugins. |
||
|
|
|
|
Similar question here: http://stackoverflow.com/questions/111910/source-control-with-vb2005-express |
||
|
|
|
Don't use your IDE for version control. Get to know your version control system itself. Which one you should use depends on your requirements. My personal favourite at the moment is Mercurial. |
||
|
|
|
|
Visual Studio Express is crippled in the sense that it cant load any plugins or addons. Just go with TortoiseSVN. Works easy enough. |
||||||||||
|
