I am currently using Mercurial via Tortoise Hg for some of my side projects. I was wondering if there is tighter integration of Mercurial with Visual Studio 2010 via a plugin or some similar mechanism. What I'm thinking about is very similar to the git extensions which provide a plugin for VS. The plan is to eventually host the projects on Codeplex which supports Mercurial.
-
I'm voting to close this question as off-topic because it's now mostly of historical interest. – holdenweb Feb 28 '18 at 15:26
-
Does "historical interest" = off-topic ??? – λ Jonas Gorauskas Mar 01 '18 at 15:45
-
I guess not. But the form of the question is. – holdenweb Mar 02 '18 at 20:45
5 Answers
I've been using hgscc recently, and it works pretty well. It has a similar interface to TortoiseHG and also integrates with solution explorer. I've only used it with VS2008 but the website says it works with 2010 as well.

- 324
- 5
- 10
-
1This is the one I'm using at the moment, and it does work with VS2010. I do like VisualHG a bit better at this time though. – Rangoric Oct 05 '11 at 21:12
VisualHg + TortoiseHg. Also suggest to assign some hotkeys in VS2010 to call VisualHg functions like: File.Commit, File.RepoBrowser.

- 8,084
- 8
- 48
- 62

- 8,505
- 11
- 76
- 127
See this other SO answer.
The alternatives out there (for VS2010 through VS2015) are basically two: VisualHG
, which is basically a GUI proxy for TortoiseHg, and HgSccPackage
, which is a stand-alone package (TortoiseHg is not required).
Both of them can be installed free of charge through the Visual Studio's Extensions and Updates... GUI tool, accessible through the Tools menu.
To keep it short, the former gives a more wide set of options, while the latter doesn't require other software installed so it's (arguably) a more lightweight solution - and also easier to install and set-up. Choosing the right tool is up to you, I personally love the TortoiseHg interface and approach so VisualHG has always be my favourite choice.
For a more extensive comparison between them you can also read this post on my blog.

- 9,205
- 8
- 78
- 111