@@ -127,13 +127,13 @@ while quilt push; do quilt refresh; done
127
127
128
128
0 . You can go through the patch stack with ` quilt push ` and ` quilt pop ` .
129
129
1 . Create a new patch (` quilt new {name}.diff ` ) or use an existing patch.
130
- 2 . Add the file(s) you are patching (` quilt add [-P patch] {file} ` ). A file
130
+ 1 . Add the file(s) you are patching (` quilt add [-P patch] {file} ` ). A file
131
131
** must** be added before you make changes to it.
132
- 3 . Make your changes. Patches do not need to be independent of each other but
132
+ 1 . Make your changes. Patches do not need to be independent of each other but
133
133
each patch must result in a working code-server without any broken in-between
134
134
states otherwise they are difficult to test and modify.
135
- 4 . Add your changes to the patch (` quilt refresh ` )
136
- 5 . Add a comment in the patch about the reason for the patch and how to
135
+ 1 . Add your changes to the patch (` quilt refresh ` )
136
+ 1 . Add a comment in the patch about the reason for the patch and how to
137
137
reproduce the behavior it fixes or adds. Every patch should have an e2e test
138
138
as well.
139
139
0 commit comments