Skip to content

Commit

Permalink
CONTRIBUTING: fix signed-off-by formatting
Browse files Browse the repository at this point in the history
The current formatting looks like

  Signed-off-by: Stephano Cetola [email protected]

because text in <> is interpreted as mailto link.
Use block quotes to make look like the one at the bottom of this patch.

Signed-off-by: Radim Krčmář <[email protected]>
  • Loading branch information
radimkrcmar committed Jan 2, 2025
1 parent 9a10991 commit 6d16edf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ By making a contribution to this project, I certify that:

# DCO Sign-Off Methods
The DCO necessitates the inclusion of a sign-off message in the following format for each commit within the pull request:

```
Signed-off-by: Stephano Cetola <[email protected]>

```
Please use your real name in the sign-off message.

You can manually add the DCO text to your commit body or include either -s or --signoff in your standard Git commit commands. If you forget to incorporate the sign-off, you can also amend a previous commit with the sign-off by executing git commit --amend -s. If you have already pushed your changes to GitHub, you will need to force push your branch afterward using git push -f.
Expand Down

0 comments on commit 6d16edf

Please sign in to comment.