• Home
  • Tags
  • RSS
  • About
  • using quilt

    Timestamp:
    Tags: blog

    I 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