Skip to content

Commit

Permalink
docs: Expand the types of commit names (#395)
Browse files Browse the repository at this point in the history
Signed-off-by: Taras Drozdovskyi <[email protected]>
  • Loading branch information
tdrozdovsky authored Jan 8, 2024
1 parent 14968a0 commit 44f3322
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ To make a clean pull request, follow the steps below:
- **docs**: Make changes to documentation.
- **style**: Implement code style changes (e.g., formatting).
- **test**: Modify or add tests.
- **refactor**: Implement code refactoring.
- **perf**: Performance Improvements.
- **build**: Any changes in build conditions.
- **ci**: Implement any continuous integration changes.
- **revert**: Revert to previous code state.

For example:

Expand All @@ -64,6 +69,11 @@ To make a clean pull request, follow the steps below:
git commit -m "docs: A brief description of documentation changes" --signoff
git commit -m "style: A brief description of code style changes (e.g., formatting)" --signoff
git commit -m "test: A brief description of changes related to testing" --signoff
git commit -m "refactor: A brief description of code refactoring" --signoff
git commit -m "perf: A brief description of performance improvements" --signoff
git commit -m "build: A brief description of build conditions" --signoff
git commit -m "ci: A brief description of continuous integration changes" --signoff
git commit -m "revert: A brief description of revert previous code state" --signoff
```

8. Pull the latest LPVS code from upstream into your branch:
Expand Down

0 comments on commit 44f3322

Please sign in to comment.