Is there a program (preferably available on Cygwin) which I can use to "filter" a diff file interactively? i.e. I want something like git interactive add, except that I want to operate on a diff file. I have already discovered filterdiff, but I don't think that it supports interactive editing, only inclusion/exclusion of hunks based on a pre-defined search criteria.

My usage scenario: I have a patch in MQ, which I would like to split up per the tutorial here: http://mercurial.selenic.com/wiki/MqTutorial#Split_a_patch_into_multiple_patches. In order to do so, I have to edit a patch file so that it includes only the (many) changes I want, and doing this manually with a text editor is kind of a pain.

Thanks!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can probably get what you want using the record extension: http://mercurial.selenic.com/wiki/RecordExtension

Apply the patch (but don't commit it) and then selectively commit chunk by chunk using record. You could do that with or without mq in the works.

link|improve this answer
Thanks, I didn't know about this! I eventually got what I wanted using a combination of the record extension, reapplying the full patch, and manually fixing bad hunks, but it would have been nice to have a GUI tool or something. (In particular, I wanted to keep/extract individual lines in several hunks.) – fyhuang Aug 9 '11 at 17:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.