snippetbashTip
quilt — Manage a series of patches. More information: <https://manned.org/quilt>.
Viewed 0 times
patchescommandseriesmanagecliinformationquiltmore
Problem
How to use the
quilt command: Manage a series of patches. More information: <https://manned.org/quilt>.Solution
quilt — Manage a series of patches. More information: <https://manned.org/quilt>.Import an existing patch from a file:
quilt import {{path/to/file.patch}}Create a new patch:
quilt new {{filename.patch}}Add a file to the current patch:
quilt add {{path/to/file}}After editing the file, refresh the current patch with the changes:
quilt refreshApply all the patches in the series file:
quilt push -aRemove all applied patches:
quilt pop -aCode Snippets
Import an existing patch from a file
quilt import {{path/to/file.patch}}Create a new patch
quilt new {{filename.patch}}Add a file to the current patch
quilt add {{path/to/file}}After editing the file, refresh the current patch with the changes
quilt refreshApply all the patches in the series file
quilt push -aContext
tldr-pages: common/quilt
Revisions (0)
No revisions yet.