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

learn more… | top users | synonyms

1
vote
1answer
16 views

hg abort: cannot refresh immutable revision

I'm using hg with the mq extension installed (I do not have the rebase extension to the best of my knowledge) After making a few changes and doing a few qdiffs, qrefs I am suddenly faced with this ...
0
votes
2answers
31 views

If I use histedit frequently, will MercurialMq be a better fit?

When I'm working on some particular feature I often fix other pretty much unrelated but easy-to-fix stuff. I make some "dirty" commits during the work. When the feature is finished, I spend a lot of ...
0
votes
1answer
29 views

Multiple temporary/local task branches in MQ/Mercurial?

I've read Steve Losh's article about using MQ's qqueues command to create multiple queues. This has the potential to get me closer to my personal take on Nirvana (namely, Git local branches), because ...
0
votes
1answer
32 views

How to push just one specific patch in Mercurial Queues?

This is what I did : hg init hg qnew -m "p1" p1.patch ; some changes hg qrefresh hg qpop hg qnew -m "p2" p2.patch ; some changes hg qrefresh hg qpop Now those 2 patches were separate features and ...
1
vote
3answers
43 views

How to undo “hg qnew”?

I issued hg qnew without realizing that it includes any outstanding changes into the patch. I'd like to back that out and pick only specific changes using hg qrecord. How can I undo qnew?
3
votes
2answers
63 views

Mercurial: Pull changes from remote repository without public phase (non-publishing server, “abort: can't rebase immutable changeset”)

Background Mercurial now has Phases which are a great mechanism to keep people from altering history that should not be altered. When a changeset is pushed to remote repository it is made public and ...
1
vote
1answer
46 views

How to work on multiple patches at the same time using Mercurial Queues?

Lets say, I have 2 bugs to fix : bug1 and bug2. I start with bug1 and in the midst of fixing it, I go to bug2 and half fix it. I return to bug1 and again partially fix it and again go to bug2. Like ...
0
votes
1answer
31 views

How to rebase patch queue while merging a branch in mercurial using mq?

In our workflow we are using Mercurial mq for our development the default branch. However, when we need to merge another branch into the default, what is the best practice to apply these patches on ...
0
votes
4answers
58 views

Mercurial: How can I keep stuff locally only?

We have some restrictions on what we are allowed to put in our central Mercurial repository. Is there some way I can keep stuff in my local Hg repository, without having it pushed to the central ...
1
vote
2answers
50 views

Mercurial Queues - export a patch

I have a mercurial queue patch on my local machine that I need to share with a coworker that I'd prefer not to commit to an upstream repository. Is there a simple way that I can package that patch and ...
3
votes
1answer
137 views

How to rename a file using Mercurial Queues?

Mercurial Queues is about patches, and patches know nothing about file renames. Is this the reason why Mercurial Queues don't support file renames, or am I doing something wrong renaming the file? I ...
1
vote
3answers
107 views

Mercurial Queues - backing up and sharing uncommitted patches

I'm trying to understand how to push my mercurial patches to a remote repo (say, bitbucket.org), without having to apply them first (actually committing them). My motivation is to first have a remote ...
1
vote
1answer
112 views

How do I convert a Mercurial queues patch to local changes only?

This answer shows how you can demote a commit to a patch, but how can I convert an mq patch to local changes only?
0
votes
1answer
44 views

Mercurial queues: having patches shared by multiple queues?

I have a local repo with two patch queues, patches and myproject. One is for bug fixes in the release branch, and one is for work on a separate project. patches: local-config debug bugfix1 bugfix2 ...
0
votes
1answer
42 views

Mq on a subrepo without write access

I have a dependancy as a subrepository (without write access to) in my project. I'd like to add a few personal customizations to that subrepository - possibly using mq. I also would love to be able ...
4
votes
1answer
148 views

When doing qpush, can I get a merge tool instead of .rej files?

I've recently start using mq, which is a great way of working. One thing that annoys me slightly is that when I qpush back my patches after doing a pull and update, I end up with .rej files if there ...
3
votes
1answer
351 views

Mercurial: how to recover from an interrupted “qpop -a”?

I've imported a couple of revisions into the queue and tried to pop them all. Unfortunately, according to some other Mercurial client accessing the same repository, hg qpop -a didn't complete ...
4
votes
1answer
111 views

How do I prevent Mercurial patches from being pulled?

So far I haven't been able to find a clear answer, though it's possible that the answer is "change your workflow". I've just started playing around with Mercurial's patch queue and I can see some ...
0
votes
1answer
116 views

Backout unwanted changes and make a patch out of them

I'am collaborating with someone on remote repo. We realized that changes I made should be removed out of repo. But those changes are in many changesets and mixed with someone's changes. We decided to ...
5
votes
3answers
607 views

MQ vs. branches in Mercurial

I've been working with Mercurial now for some time. When making (private) changes to some third party software, in the past I always created a separate named branch for these changes. When the ...
5
votes
1answer
463 views

How do I fold patches (qfold) in TortoiseHg 2.x?

I've seen a few tutorials that talk about qfold and how to do it in TortoiseHg 1.x, but I can't figure out where the button for folding patches is in 2.x. The official documentation doesn't mention it ...
2
votes
4answers
261 views

How can I keep some modifications from propagating in mercurial?

I am developing a web database that is already in use for about a dozen separate installations, most of which I also manage. Each installation has a fair bit of local configuration and customization. ...
3
votes
1answer
286 views

Force mq to work only on drafts

Recently Mercurial added phases. Is this possible to restrict mq to work only on phase draft? It should show a warning when I try to strip public changeset.
2
votes
1answer
90 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 ...
3
votes
3answers
1k 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 ...
2
votes
1answer
212 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 ...
2
votes
2answers
376 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 ...
8
votes
3answers
512 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
302 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 ...
3
votes
2answers
134 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 ...
0
votes
1answer
44 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 ...
7
votes
2answers
464 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) ...
3
votes
1answer
334 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?
4
votes
1answer
853 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 ...
1
vote
1answer
99 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 ...
6
votes
2answers
831 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. ...
1
vote
1answer
233 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 ...
4
votes
2answers
246 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
164 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 ...
2
votes
2answers
295 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 ...
7
votes
2answers
655 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 ...
1
vote
2answers
191 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 ...
2
votes
0answers
481 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 ...
5
votes
2answers
339 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
4answers
1k 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
2answers
390 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 ...
16
votes
3answers
1k 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 ...
3
votes
1answer
428 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 ...
0
votes
1answer
160 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 ...
2
votes
3answers
363 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 2