Sha256: 4f2709d1e73681beec09547d659c6ec5b30a467ebd09b8d820a712cb4dbe93a8
Contents?: true
Size: 1.69 KB
Versions: 1
Compression:
Stored size: 1.69 KB
Contents
# Commit Message Convention ## Commit Message Format ``` <Type>: Short description (fix #1234) Logger description here if necessary BREAKING CHANGE: only contain breaking change ``` * Any line of the commit message cannot be longer 100 characters! ## Revert ``` revert: commit <short-hash> This reverts commit <full-hash> More description if needed ``` ## Type Must be one of the following: * **feat**: A new feature * **fix**: A bug fix * **docs**: Documentation only changes * **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) * **refactor**: A code change that neither fixes a bug nor adds a feature * **perf**: A code change that improves performance * **test**: Adding missing or correcting existing tests * **chore**: Changes to the build process or auxiliary tools and libraries such as documentation generation ## Subject * use the imperative, __present__ tense: "change" not "changed" nor "changes" * don't capitalize the first letter * no dot (.) at the end * reference GitHub issues at the end. If the commit doesn’t completely fix the issue, then use `(refs #1234)` instead of `(fixes #1234)`. ## Body * use the imperative, __present__ tense: "change" not "changed" nor "changes". * the motivation for the change and contrast this with previous behavior. ## BREAKING CHANGE * This commit contains breaking change(s). * start with the word BREAKING CHANGE: with a space or two newlines. The rest of the commit message is then used for this. This convention is based on [AngularJS](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#commits) and [ESLint](https://eslint.org/docs/developer-guide/contributing/pull-requests#step2)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tui_editor-rails-1.0.2.0 | vendor/assets/components/tui-editor/docs/COMMIT_MESSAGE_CONVENTION.md |