2025-03-14 21:59:59 -06:00
|
|
|
# quilt
|
|
|
|
|
|
|
|
|
|
> Manage a series of patches.
|
2025-05-08 12:26:01 -06:00
|
|
|
> More information: <https://manned.org/quilt>.
|
2025-03-14 21:59:59 -06: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`
|