CONTRIBUTING: Explain how to sign off commits

Signed-off-by: Tomas Babej <tomas@tbabej.com>
This commit is contained in:
Tomas Babej 2021-06-11 22:31:27 -04:00 committed by Thomas Lauf
parent 47c17b6833
commit 972051fe11

View file

@ -142,11 +142,11 @@ To make a pull request you need to have a Github account.
1. Commit your changes, and finally push to the remote repository.
Use a commit message that matches the prevailing format. (See `git log` for examples.)
$ git commit -am '<issue>: <description>'
$ git commit --signoff -am '<issue>: <description>'
...
$ git push origin feature_branch
Furthermore, commits should be signed off according to the [DCO](DCO).
Furthermore, commits should be signed off according to the [DCO](DCO) (use `-s` / `--signoff` flag when commiting).
1. Create the pull request on Github.