Where can I find a good Eclipse Mercurial Plugin? 5 Answers 5
I use GIT on a Mac. Enough said. I have the tools, I have the experience. And I want to continue to use it. No wars here… The problem...
Is there a way to configure TortoiseHg to store my password? I have a project hosted on Google Code that I access using TortoiseHg. Whenever I want to push...
We now have a “stiging” branch, where “staging” seems to be a far better semantic fit. What’s a good strategy for handling this? 5 Answers 5
In Git I can do this: 1. Start working on new feature: $ git co -b newfeature-123 # (a local feature development branch) do a few commits (M, N,...
I’m looking for a counter-part of git commit --amend in Mercurial, i.e. a way to modify the commit which my working copy is linked to. I’m only interested in...
So I keep making a silly mistake in Mercurial. Often times, I’ll start work without doing an “hg pull” and an “hg update.” When I try to push my...
Is it possible to delete all untracked files from my working directory? Let’s say I added a bunch of files to my working directory, didn’t add them via ‘hg...
I downloaded TortoiseHg 1.0 for evaluation. For the life of me I can’t figure out how to make a branch. It seems to understand branches (e.g. in its repository...
I use this to remove a file from the repo: hg remove <full file path> What command can you use to do an hg remove on all files that...