2020-05-14 16:07:23 +01:00
|
|
|
# quilt
|
|
|
|
|
2024-02-14 20:25:13 +00:00
|
|
|
> Manage a series of patches.
|
2020-05-14 16:07:23 +01:00
|
|
|
> More information: <https://savannah.nongnu.org/projects/quilt>.
|
|
|
|
|
|
|
|
- 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`
|