using quilt
Tue, 18 Oct 2011 16:57 categories: blogI rarely use quilt, but when I do I always have to look up the workflow again.
So here it is for my brain to hopefully finally remember it the next time:
quilt new the_patch_name.diff
quilt add source.c
vim source.c
quilt refresh
Or, when editing an existing patch instead of using new
:
quilt push the_patch_name.diff
And in the end to unapply the patch:
quilt pop