forked from Esri/geometry-api-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Esri#41 from DD2480-Group-3/40-commit-structure
docs: Added md file that describes the tags for our commits
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Document for Commit Structure | ||
=========================================================== | ||
|
||
* `feat` - a new feature is introduced with the changes | ||
* `fix`- a bug fix has occurred | ||
* `chore` - changes that do not relate to a fix or feature and don't modify src or test files (for example updating dependencies) | ||
* `refactor` - refactored code that neither fixes a bug nor adds a feature | ||
* `docs` - updates to documentation such as a the README or other markdown files | ||
* `style` - changes that do not affect the meaning of the code, likely related to code formatting such as white-space, missing semi-colons, and so on. | ||
* `test` - including new or correcting previous tests | ||
* `perf` - performance improvements | ||
* `ci` - continuous integration related | ||
* `build` - changes that affect the build system or external dependencies | ||
* `revert` - reverts a previous commit |