From f7b825937790508c36f1f79a7ad9f42e646bdca1 Mon Sep 17 00:00:00 2001 From: cryo Date: Mon, 1 Sep 2025 18:26:47 +0000 Subject: [PATCH] chore: add DCO requirement in CONTRIBUTING.md Signed-off-by: cryo --- CONTRIBUTING.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5d206483..fe71967b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -176,9 +176,11 @@ The test suite includes: ``` 5. **Commit your changes:** + + Commit your changes with a clear message, making sure to **sign off** on your work using the `-s` flag. This is required by the project's **Developer Certificate of Origin (DCO)**. ```bash git add . - git commit -m "feat: add your feature description" + git commit -s -m "feat: add your feature description" ``` ### Debugging