HgScc tutorial? [closed] - visual-studio

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Does anyone know of a tutorial or guide for HgScc (Mercurial)?
I've installed and integrated HgScc with VS2010, but having never used any source control other than TFS, I'm not all that sure what I'm doing.
For instance, I've committed more than one version of a file but Revert is still greyed-out in the context menu. And how do I assign Beyond Compare as the Diff tool?
I can find plenty of people discussing and recommending it but I can't find any guide on how to use it.
[It's not a Mercurial tutorial I'm looking for as I don't intend to use the command line.]

You can set diff tool for HgSccPackage in the MS Visual Studio settings:
Tools -> Options -> Source Control -> Mercurial Options Page -> Diff Tool
In 1.8.5 it has moved to:
Mercurial -> Options -> Diff tools

I believe HgSCC uses the configuration settings of Mercurial, so you need to go through the .hg\hgrc documentation for the Beyond Compare setting.
And to get what happens when you commit you will need to look at the philosophy of Mercurial and other DVCS's. So HGInit is still a good source of getting to know HgSCC.

Related

Tool to compare directories (Windows 7) [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Due to some SVN movement I got disconnected from SVN while I was in middle of a fairly large enhancement.
Now I have my current workspace (with changes and disconnected from SVN) and new workspace (latest from SVN).
I need to manually update the new workspace with the changes so I could check them in.
So I am looking out for a tool that can let me compare the two workspaces, tell for new files and folders and also updated files.
Does a tool like this exist? If so, could you recommend a good one?
I use WinMerge. It is free and works pretty well (works for files and directories).
The tool that richardtz suggests is excellent.
Another one that is amazing and comes with a 30 day free trial is Araxis Merge. This one does a 3 way merge and is much more feature complete than winmerge, but it is a commercial product.
You might also like to check out Scott Hanselman's developer tool list, which mentions a couple more in addition to winmerge

Is there an issues plugin for github/visual studio? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Is there a plugin that will show my github issues in visual studio?
Would be pretty cool to be able to see all that info inside the IDE
I don't know of any plugin offering a direct integration with GitHub bug tracker.
The Git Extensions don't include that feature (and there are one of the advanced plugin to integrate Git - not GitHub, just Git - within Visual Studio).
Maybe another soution would be to get some kind of integration with another bug tracking which then would be able to read from/write to the GitHub issue tracker.
This SO question, for instance, mentioned LightHouse (which isn't a good fit in your case, since it is not integrated with Visual Studio).

Mercurial or Git [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 12 years ago.
Hello
I need a good SCM with integration in Visual Studio 2010 and ability to work over internet, I mean other users should be able to checkin/checkout files through internet/network.
I saw Git and its Extensions but I had problem with VS Integration. Its toolbar buttons and menu items didn't respond to my clicks, it just did nothing. I tried reinstalling it several times but without success. If you have a solution on this issue, please let me know.
Also a big advantage would be to use that SCM with my Qt projects, Qt Creator supports both mercurial and git.
So what would suggest? which one should I choose?
I would strongly suggest git.
Git is by far the more popular of the two so if you're looking to get people interested in collaborating on an open source project git is an attractive selling point. I've also worked with mercurial and subversion repositories and I've found git to be easiest to use and mercurial the most difficult.
Also, if you're looking to setup a free git repository you should go to github.com. For mercurial try code.google.com .
Hope my opinion helps, good luck!

What equivalents are there to TortoiseSVN, on Mac OSX? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am using a MacBook Pro running Mac OS X 10.5. I am new to this development environment, and previously worked on Windows.
I find there is no TortoiseSVN for Mac PC, and I am wondering any alternative (better free and easy to use GUI tools) tools for Mac?
Have a look at this archived question: TortoiseSVN for Mac? at superuser. (Original question was removed, so only archive remains.)
Have a look at this page for more likely up to date alternatives to TortoiseSVN for Mac: Alternative to: TortoiseSVN
My previous version of this answer had links, that kept becoming dead.
So, I've pointed it to the internet archive to preserve the original answer.
Subversion client releases for Windows and Macintosh
Wiki - Subversion clients comparison table
i use "Versions", quite easy, but not free .
http://versionsapp.com/
I use svnX (http://code.google.com/p/svnx/downloads/list), it is free and usable, but not as user friendly as tortoise. It shows you the review before commit with diff for every file... but sometimes I still had to go to command line to fix some things

What is the best IDE/GUI for my .NET DSL? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
As a learning exercise I'm building a basic scientific computation environment based on .NET. I'd like the GUI of the app to be much like matlab, in that I have an interactive window, an objects window and the facility to spawn visualisation windows. Intellisense in my command window would be very nice. It seems visual studio itself could almost be used in this manner, is this a viable option? Creating the visualisations within the VS environment seems like the only hurdle. What could I do here?
Eclipse is also an option I suppose but I'd prefer to stay totally with .NET if possible.
Any other suggestions?
You could take a look at MonoDevelop here to provide some help. It is open-source and one of the nicer IDEs.
You could also build something based on GEdit, as it is very pluggable.
Those are the two tools, plus the CLI that I use for .NET development, but I am entirely on Linux/Unix using the Mono tools.
Hope that helps!
I've just discovered VSlab. Its specific to F#, however its a good demonstration of what I would like to be able to do with my own DSL in terms of visualisation and an interactive editor.

Resources