From b624598060bf2b81d2b903d53c2966a1d2c2b7eb Mon Sep 17 00:00:00 2001 From: wizard <112275929+famouswizard@users.noreply.github.com> Date: Thu, 14 Nov 2024 22:22:39 +0300 Subject: [PATCH] Fix missing -m flag in git commit command Update CONTRIBUTING.md (#1215) This PR fixes an issue where the git commit command in the contributing guide was missing the necessary -m flag for the commit message. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 33f18cbdd..0ace0a1e0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -43,7 +43,7 @@ As a contributor, you are expected to fork this repository, work on your own for ```sh git add src/file.cairo - git commit "Fix some bug short description #123" + git commit -m "Fix some bug short description #123" git push origin fix/some-bug-short-description-#123 ```