LinuxCommandLibrary

quilt

Tool to manage a series of patches.

TLDR

Import an existing patch from a file

$ quilt import [path/to/filename.patch]
copy


Create a new patch
$ quilt new [filename.patch]
copy


Add a file to the current patch
$ quilt add [path/to/file]
copy


After editing the file, refresh the current patch with the changes
$ quilt refresh
copy


Apply all the patches in the series file
$ quilt push -a
copy


Remove all applied patches
$ quilt pop -a
copy

Copied to clipboard