From c3a9b09fee29956ee1f1f19e8d76350bc13c82cc Mon Sep 17 00:00:00 2001 From: stefan6419846 <96178532+stefan6419846@users.noreply.github.com> Date: Thu, 5 Mar 2026 17:16:25 +0100 Subject: [PATCH] Fix signing command in contribution guide The correct parameter name is `--signoff` as per the official docs: https://git-scm.com/docs/git-commit#Documentation/git-commit.txt--s Additionally fixes a casing typo I stumbled upon when reading the document. Signed-off-by: stefan6419846 <96178532+stefan6419846@users.noreply.github.com> --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 998da4889..ffa914d2f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -21,7 +21,7 @@ poetry install --all-extras ## Code style -THis project loves latest python features. +This project loves latest python features. This project loves sorted imports. This project uses [PEP8] Style Guide for Python Code. @@ -67,7 +67,7 @@ Please sign off your commits, to show that you agree to publish your changes und , and to indicate agreement with [Developer Certificate of Origin (DCO)](https://developercertificate.org/). ```shell -git commit --signed-off ... +git commit --signoff ... ``` ## Pre-commit hooks