From 6d16edf533e617ca0a1062e0ded6e909dc28059c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radim=20Kr=C4=8Dm=C3=A1=C5=99?= Date: Thu, 2 Jan 2025 15:48:09 +0100 Subject: [PATCH] CONTRIBUTING: fix signed-off-by formatting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current formatting looks like Signed-off-by: Stephano Cetola scetola@linuxfoundation.org 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ář --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1d98c72..c925ae5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 - +``` 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.