I'm looking for a command that will output a list of sequential patches that would apply cleanly if the repository was in a specific known earlier state. Here's an hg glog of a repository that contains some issues I've run into (also available from https://bitbucket.org/dusty/funny_repo/ if you want to play with it your own clone):
@ changeset: 8:ffd749c92f3b
| tag: tip
| summary: h
|
o changeset: 7:bc959885f6aa
|\ parent: 6:dfe021fa52a4
| | parent: 5:4d8bc738f0ab
| | summary: MERGE
| |
| o changeset: 6:dfe021fa52a4
| | parent: 3:1374ea53e7b7
| | summary: e
| |
o | changeset: 5:4d8bc738f0ab
| | branch: branch2
| | summary: g
| |
o | changeset: 4:e46fa4632d36
|/ branch: branch2
| summary: f
|
o changeset: 3:1374ea53e7b7
| summary: d
|
o changeset: 2:59712a781f0c
| branch: branch1
| summary: c
|
o changeset: 1:ff7f8724ad17
| branch: branch1
| summary: b
|
o changeset: 0:a3b3a87aa422
summary: a
Essentially, I want to know what revset to pass to hg export in order to output changesets 0, 1, 2, 3, 6, 7, and 8. I don't want changesets 4 and 5 because the 'effect' of those changesets is applied in the merge commit in changeset 6.
ancestors(default) outputs all the changesets, but branch('default') ignores changesets 1 and 2, which, while on a different branch, are required for the patches to apply cleanly.
Obviously for this instance I could use hg log -r "0..default and not branch(branch2)" but I am looking for a more general command revset that will work in all the cases.
For testing, I am using the command hg export -r "0..default and not branch(branch2)" -o ../%R.patch and the following for loop to apply the resulting patches:
cd ../
mkdir patched
cd patched
for n in ../*.patch ; do
patch -p1 <$n
done
branch2. The problem I can see is that if you could find a solution (always pick thedefaultbranch), it wouldn't work if you had two unnamed branches, which is very much a possibility (probably more-so than named branches depending on your workflow?). In these cases you would be wanting to pick thedefaultbranch, but that could be either. – icabod Dec 19 '12 at 13:25