File tree Expand file tree Collapse file tree 3 files changed +14
-7
lines changed
Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 1212
1313permissions :
1414 contents : write
15-
15+
1616jobs :
1717 build-and-deploy :
1818 if : |
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,14 +14,24 @@ this first.
1414
1515Go to the source directory and use ` svn diff ` to create a patch.
1616
17+ ** Use a descriptive patch name with the bug number and a short description,
18+ rather than a generic name like ` patch.diff ` .**
19+
1720``` bash
1821cd $TOP_SRCDIR
19- svn diff > $PATCHDIR /patch .diff
22+ svn diff > $PATCHDIR /16629-infinite-recursion .diff
2023```
2124
25+ The example above uses ` 16629-infinite-recursion.diff ` - this name follows the
26+ convention: bug number (16629), short description (infinite-recursion), and
27+ ` .diff ` extension, making patches easy to identify and review.
28+
2229The patch file will be saved in the directory specified by the PATCHDIR
23- environment variable that is defined when the codespace starts
30+ environment variable that is defined when the codespace starts.
2431
2532``` bash
26- echo $PATCHDIR /patch.diff
33+ ls $PATCHDIR
2734```
35+
36+ lists all patch files in your patch directory, allowing you to easily
37+ see and verify the patch files you have created.
You can’t perform that action at this time.
0 commit comments