Путеводитель по Руководству Linux

  User  |  Syst  |  Libr  |  Device  |  Files  |  Other  |  Admin  |  Head  |



   quilt    ( 1 )

инструмент для управления сериями патчей (tool to manage series of patches)

EXAMPLE OF WORKING TREE

work/ ├── patches/ │ ├── series (list of patches to apply) │ ├── patch1.diff (one particular patch) │ ├── patch2.diff │ └── ... ├── .pc/ │ ├── .quilt_patches (content of QUILT_PATCHES) │ ├── .quilt_series (content of QUILT_SERIES) │ ├── patch1.diff/ (copy of patched files) │ │ └── ... │ ├── patch2.diff/ │ │ └── ... │ └── ... └── ...

The patches/ directory is precious as it contains all your patches as well as the order in which it should be applied.

The .pc/ directory contains some metadata about the current state of your patch series. Changing its content is not advised. This directory can usually be regenerated from the initial files and the content of the patches/ directory (provided that all patches were regenerated before the removal).