Skip to content

Commit

Permalink
Fix missing -m flag in git commit command Update CONTRIBUTING.md (#1215)
Browse files Browse the repository at this point in the history
This PR fixes an issue where the git commit command in the contributing guide was missing the necessary -m flag for the commit message.
  • Loading branch information
famouswizard authored Nov 14, 2024
1 parent f84b30d commit b624598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit b624598

Please sign in to comment.