HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

quilt — Manage a series of patches. More information: <https://manned.org/quilt>.

Submitted by: @import:tldr-pages··
0
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 refresh


Apply all the patches in the series file:
quilt push -a


Remove all applied patches:
quilt pop -a

Code 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 refresh

Apply all the patches in the series file

quilt push -a

Context

tldr-pages: common/quilt

Revisions (0)

No revisions yet.