forked from eclipse-sw360/sw360
-
Notifications
You must be signed in to change notification settings - Fork 0
Dev Semantic Commits
Anupam Ghosh edited this page Jun 28, 2022
·
1 revision
- automatic generating of the changelog
- simple navigation through git history (e.g. ignoring style changes)
<type>(<scope>): <commit message>
- feat (new feature for the user, not a new feature for build script)
- fix (bug fix for the user, not a fix to a build script)
- docs (changes to the documentation)
- style (formatting, missing semi colons, etc; no production code change)
- refactor (refactoring production code, eg. renaming a variable)
- test (adding missing tests, refactoring tests; no production code change)
- chore (updating grunt tasks etc; no production code change)
Example values:
- ui (user interface)
- rest (REST API)
- thrift (apache thrift services)
- project (project portlet)
- component (component portlet)
- user (user portlet)
- etc.
fix(rest): change maven plugin order to generate the documentation correctly
<type>(<scope>): <commit message>
Please reference in the pull request to the open issue
closes eclipse/sw360#<issue-number>
closes eclipse/sw360#758