README.source 1.1 KB

123456789101112131415161718192021222324252627
  1. This package is using the quilt framework.
  2. All patches are located in debian/patches.
  3. Adding a new patch: quilt new <date-patch_name>
  4. This will create a new file debian/patches/patch/date-patch_name.
  5. Please use the current date (e.g. 20100221 - YYYYMMDD) as prefix!
  6. Editing a file to include it into the patch: quilt edit <filename>
  7. This will open your $EDITOR.
  8. To write your changes into the new patchfile: quilt refresh.
  9. quilt push:
  10. Apply patch(es) from the series file. Without options, the next
  11. patch in the series file is applied. When a number is specified,
  12. apply the specified number of patches. When a patch name is
  13. specified, apply all patches up to and including the specified patch.
  14. Patch names may include the patches/ prefix, which means that
  15. filename completion can be used.
  16. quilt pop:
  17. Remove patch(es) from the stack of applied patches. Without options,
  18. the topmost patch is removed. When a number is specified, remove the
  19. specified number of patches. When a patch name is specified, remove
  20. patches until the specified patch end up on top of the stack.
  21. Patch names may include the patches/ prefix, which means that
  22. filename completion can be used.