Chris Mason <mason@suse.com> [Thu, 27 Jul 2006 09:27:45 -0700] rev 2699
mq: strip should not blow away local changes
This changes the mq strip command to abort if there are any changes in
the working directory.
Chris Mason <mason@suse.com> [Thu, 27 Jul 2006 09:27:42 -0700] rev 2698
mq: fix qnew and qimport to deal with series file comments
qnew and qimport did not take comments into account when deciding where
to place new patches in the series file.
Chris Mason <mason@suse.com> [Thu, 27 Jul 2006 09:27:39 -0700] rev 2697
mq: qpop should act like quilt pop
qpop patchname would pop the named patch off the stack. This is slightly
different from how quilt pop works. quilt pop pops everything up to the
named patch.
Chris Mason <mason@suse.com> [Thu, 27 Jul 2006 09:27:35 -0700] rev 2696
mq: patch naming shortcuts
This adds some more options to the mq lookup routine. It allows
you to use shortcuts in naming patches to push or pop. You
can now use:
1) a full patch name
2) a number to indicate an offset in the series file
3) a unique substring of the patch name
4) patchname[-+]num to indicate an offset from a given patch.
For case #3 substrings are allowed. qtip and qbase are aliases for
the top and bottom of the applied patch queue, unless they are already
in the series file as patch names.