Skip to content

Commit

Permalink
feat: expanded on npm run push (#76)
Browse files Browse the repository at this point in the history
closes #39
  • Loading branch information
ahnafsle committed Mar 26, 2023
1 parent 829857e commit 499b5a4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/contributing/introduction-to-contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ You can also experiment with conventional commits by doing:
```shell
npm run push
```
Using the `npm run push` command is an interactive replacement for `git commit`. It enforces the conventional commits specification for writing commit messages, making it easier for developers and maintainers to understand the changes made in a particular commit.

Assuming you are dealing with code changes and you add them using `git add`, once you are ready to commit, there are 2 ways we can proceed: `git commit` or `npm run push`. The second method is preferred, as doing a subsequent `git push` and then opening a PR would ensure the title is conforming to our standards.

### Work in progress

Expand Down

0 comments on commit 499b5a4

Please sign in to comment.