2020-05-14 17:07:23 +02:00
|
|
|
# quilt
|
|
|
|
|
2024-02-14 17:25:13 -03:00
|
|
|
> Manage a series of patches.
|
2025-04-22 06:20:48 +03:00
|
|
|
> More information: <https://manned.org/quilt>.
|
2020-05-14 17:07:23 +02:00
|
|
|
|
|
|
|
- Import an existing patch from a file:
|
|
|
|
|
|
|
|
`quilt import {{path/to/filename.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`
|