From 16fbab30b15e3d72d73ed74411a88a112262ba42 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Fri, 21 Nov 2025 14:24:04 +0100 Subject: [PATCH] docs: add gitlint guidance to CONTRIBUTING.md Signed-off-by: Philipp Schuster On-behalf-of: SAP philipp.schuster@sap.com --- CONTRIBUTING.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 04738e0dc..db1b4bfed 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -26,6 +26,9 @@ cargo check --all --all-targets --tests cargo clippy --all --all-targets --tests # Please note that this will not execute integration tests. cargo test --all --all-targets --tests + +# To lint your last three commits +gitlint --commits "HEAD~3..HEAD" ``` ### \[Optional\] Run Integration Tests