Skip to content

Commit a34e23c

Browse files
committed
docs: improve contribution guide
1 parent 40ca5ac commit a34e23c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

CONTRIBUTING.md

+6
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,16 @@ If not, please create a new issue.
3535
```sh
3636
git checkout -b add-featureX
3737
```
38+
or
39+
```sh
40+
git checkout -b fix-bugX
41+
```
42+
3843
* As you code, commit your changes (following conventional commits style, the commit template will help you with that).
3944
pre-commit will automatically run clang-format and clang-tidy and make sure your commit message conforms with our template.
4045

4146
* Write tests using Google Tests to test your code.
47+
In case your contribution is a bugfix, add or improve a test to catch the bug before the fix is applied. This ensures resurfacing of the bug due to later code changes is caught.
4248

4349
5. Propose changes via Pull Requests
4450

0 commit comments

Comments
 (0)