Tagged Questions

Mercurial Queues is a standard extension of Mercurial DVCS that manages changeset patches.

learn more… | top users | synonyms

20
votes
4answers
3k views

git equivalent to hg mq?

I just started using Git alongside Mercurial to familiarize myself with Git. I use the mq extension in Mercurial extensively to manage local patches, and I'm looking for a Git equivalent. Should I ...
16
votes
3answers
731 views

How to manage concurrent development with mercurial?

This is a best practice question, and I expect the answer to be "it depends". I just hope to learn more real world scenarios and workflows. First of all, I'm talking about different changes for the ...
11
votes
3answers
757 views

Removing file from Mercurial MQ Patch

I have large MQ patch applied in Mercurial. What has happened is I have done qrefresh and included files in my patch that I do not want to include. Is there a way to remove the changes to these file ...
7
votes
2answers
702 views

How to avoid accidentally 'hg push' instead of 'hg qpush'?

For those of you that use Mercurial with the MQ extension: This is the second time I accidentally submit changes to the central repository (hg push) instead of applying a patch to my working ...
6
votes
1answer
252 views

In Mercurial Is it “safe” to pull when a mq patch is applied?

The go programming language has a page on code reviews using mq and it states: "Since pulling, pushing, updating and committing while mq patches are applied can damage your repository". I understand ...
6
votes
3answers
1k views

How to swap Mercurial Queues in and out of a repository

I have a platform neutral mercurial code repo called "Simulator" and want to apply patches that target specific platform's optimizations before a build. According to the guide we can accomplish ...
5
votes
1answer
258 views

How-to multiple hg mq patch queues (in one repository vs. many subrepos)

I am trying to set up my workflow with MQ as described in the MqTutorial and in the HGbook Chapter 13. The part I struggle with is how to have multiple patch queques under version. Alternatives: I. ...
5
votes
2answers
197 views

Is `qrefresh` considered harmful?

The qrefresh command in the MQ extension don't make sense to me. I'll explain my assumption: If you don't know on which revision should a certain patch be applied, it have a very little value. You ...
4
votes
2answers
111 views

How to retrieve an accidentally deleted patch in Mercurial with MQ

I had two patches in series, neither one applied, and I accidentally called qdelete on the wrong one. Is there any way to reverse this operation and get my patch back? I had a huge amount of work ...
4
votes
4answers
99 views

What to do when you have too many changes within a single patch in an hg mq the patch queue?

The purpose of the hg mq plugin is to be able to make perfect commits to your repository, not confusing the changes that you made in your absent-minded ADHD induced rambling through your code; For ...
4
votes
2answers
143 views

Updating Commit Message in Mercurial MQ extension

After using hg qnew and hg qrefresh to create and update a patch that I want to apply to my repository, but the commit message that I wrote when I did hg qnew was not very good, it did not reference ...
3
votes
4answers
402 views

Mercurial Patch Queue Use Cases

I use mercurial patches in the following cases:- When I need to pull from a remote repository and have outstanding uncommitted changes. Then I simply create a patch, qpop it, pull from the remote ...
3
votes
3answers
651 views

How do I split work into multiple patches with mercurial queues?

If I've been churning away at the code for a while, and forgotten to create a patch series as I go, how do I create the patch series retrospectively? So far the only thing that comes to mind is: # ...
2
votes
1answer
35 views

Efficient way to make a new patch from some of the current changes

I'm using mercurial queues quite alot, and I'm really happy with them, but there is one workflow which I find overly complicated. It happens sometimes that I'm working on a patch, and then I realize I ...
2
votes
2answers
169 views

Creating a temporary named branch in Mercurial, then deleting it from existence

I'm toying with the idea of adding a "remote-run (personal build) for Mercurial" ability in the TeamCity Visual Stuio plugin. Since v6.5, TeamCity supports a "remote run branch trigger", where if a ...
2
votes
3answers
89 views

Mercurial - Working with Queues similar to Shelves?

I've recently started working with MQ as I like the idea of working on isolated patches and committing without affecting the repo until the changeset is refined enough. Before that, I used to work ...
2
votes
2answers
54 views

hg update --mq not working?

I am using: Mercurial Distributed SCM (version 1.9.1), and I've done the following: D:\code\mqtest>hg init D:\code\mqtest>hg qinit -c D:\code\mqtest>echo NonQueue > first ...
2
votes
2answers
53 views

How to convert N local topmost commits to an MQ patch?

I would like to arrange my last commits as an MQ patch. All the commits are local (never pushed to the server), but not all the local commits are to be converted. Say, I did 10 commits (never pushed) ...
2
votes
1answer
151 views

How to use mercurial merge functionality for rejected hunks in a patch queue, without the deprecated qsave?

I have a repository and am using mq patch queue for unfinished changes. The patch queue is also under version control. Let's say I have 2 patches p1 and p2 (applied in that order). Now I make a ...
2
votes
0answers
305 views

Mercurial subrepositories with MQ

Sometimes when I am working on a code change, I need to make a corresponding change to the shared library code in my repository, which is itself a subrepository. When I want to commit the changes, I ...
2
votes
1answer
348 views

Mercurial: Export last n revision into MQ

is there an easy way to export last n commits into a new mq queue and strip the commits from the real repository? I do often start out developing a new feature, later realising I did something ...
1
vote
3answers
42 views

installing Mercurial extensions

I have installed Mercurial from the Ubuntu package repository. However I don't know how to enable extensions (q* commands). How should I do that? The help shows that enabled extensions: style (no ...
1
vote
1answer
58 views

Mercurial mq hooks

I would like to setup hg hooks for some actions done by mq extension. For example when I do hg qnew I would like to use post-review to create a new review request in our reviewboard server. I ...
1
vote
1answer
70 views

Untange mq patches and merge

I accidentally merged a branch into a workspace with applied patches. How do I clean up this mess? Do I have to clean the merge (hg up -C) or is there some way to save my merge?
1
vote
0answers
45 views

Mercurial + MQ EOL behaviour

I'm working with mercurial+mq, on Win+OSX, and the EOL issues are killing me. I've activated EOL extension, added .hgeol as shown below: [patterns] **.sln = CRLF **.vcproj = CRLF **.vcxproj = CRLF ...
1
vote
1answer
103 views

Mercurial patch queue collapse

I am using the patch queue to achieve something like what this person asked here: Why can't I rebase on to an ancestor of source changesets if on a different branch? However, what I would like ...
1
vote
2answers
139 views

Mercurial: qrefresh to edit several commit messages?

I've come across these questions: Incorrect Commit Message In Mercurial and Is qrefresh harmful. However, I'm still confused about my specific problem. I cloned a repository and have since made ...
1
vote
2answers
116 views

Are Mercurial Queue specific commands equivalent to Mercurial commands with a --mq parameter?

I'm trying to learn Mercurial Queues and I'm confused by there being both a bunch of "hg q*" commands and also many normal hg commands with the "--mq" parameter. I think that the --mq parameter is ...
1
vote
2answers
161 views

Adding uncommitted change into a new patch with Mercurial queues

The process of creating patches in Mercurial is as follows: Create patch with qnew -> Make changes -> Refresh patch What if I have already made (uncommited) changes and I want to add them to the ...
1
vote
1answer
199 views

disable hg qfinish without changeset message

I use mercurial queues and sometimes I forget to set my message with a hg qrefresh -m ... and forget to check before I run hg qfinish and I get the message patch MyPatch finalized without changeset ...
1
vote
2answers
123 views

How can I add complete binaries to a Mercurial patch?

I want to use Mercurial to capture changes made to the vanilla installation of a piece of software we use. Everytime we upgrade the software, we need to manually edit the various configuration files ...
1
vote
3answers
641 views

mercurial: how to synchronize mq patches from a master repo as mq patches to a set of clone repos

I have to run a dozen of different build tests on a code base maintained in a mercurial repository. I don't want to run serially these tests on same repository because they modify a set of common ...
1
vote
1answer
2k views

Mercurial: Revert “commit action” changes

Suppose I have made a change to a file, hg status show it as modified. Now I want to commit. Before I can do so I accidentially hg remove my file. Mercurial now would remove my file on the next ...
1
vote
3answers
781 views

Using mercurial's mq for managing local changes

I have a local mercurial repository with some site-specific changes in it. What I would like to do is set a couple files to be un-commitable so that they aren't automatically committed when I do an ...
0
votes
2answers
64 views

How to disable pretxncommit hooks with mercurial queues or histedit?

I have some pretxncommit hooks in my local mercurial repository, those hooks are used to check that the commit message includes a reference to a ticket and some other sanity checks. My problem is ...
0
votes
1answer
31 views

Why refreshing my mq patch leaves modified files in the working directory?

Please, observe: PS Z:\dev> hg version Mercurial Distributed SCM (version 1.9.2) (see http://mercurial.selenic.com for more information) Copyright (C) 2005-2011 Matt Mackall and others This is ...
0
votes
1answer
109 views

Difficulty splitting mercurial patches up

I've got a web application I want to be able to create patches for. Specifically I want to create patches for enabling specific functionality in the web server. JAVA_OPTS="-Xms128m -Xmx256m ...
0
votes
1answer
485 views

Mercurial Queues: combining patches

I've been playing with Mercurial and mercurial queues, and now have a fairly reasonable working version. However, before I submit a patch, I'd like to take that spagetti-history and merge it into ...