patching:creating_a_patch
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
patching:creating_a_patch [2016/10/18 09:37] – peter | patching:creating_a_patch [2019/12/01 22:07] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Patching - Creating a patch ====== | ||
- | |||
- | If you are a developer you might come across bugs that you fixed yourself. | ||
- | |||
- | ===== Creating the patch file ===== | ||
- | |||
- | <code bash> | ||
- | # Run diff to get all the differences of two entities. These can be files but also folders. | ||
- | # The result is piped into | ||
- | # c => output NUM (default 3) lines of copied context | ||
- | # r => recursive | ||
- | # B => ignore changes whose lines are all blank | ||
- | diff -crB Folder1 Folder2 > bugfix.patch | ||
- | </ | ||
- | |||
- | Copy the patch file into the directory of the file or folder you want to patch. If the patch was created of two folders change into the directory that should be patched and run the patch from there. | ||
- | |||
- | ===== Running the patch ===== | ||
- | |||
- | <code bash> | ||
- | # patching files | ||
- | patch –dry-run -p1 -i bugfix.patch # Patch simulation | ||
- | patch -p1 -i bugfix.patch | ||
- | |||
- | # patching folders | ||
- | cd folder_to_be_patched | ||
- | patch –dry-run -p1 -i ../ | ||
- | patch -p1 -i ../ | ||
- | </ | ||
patching/creating_a_patch.1476783426.txt.gz · Last modified: 2020/07/15 09:30 (external edit)