From 5409ee9adeebe7b6dea372568d447bd4e26e6eea Mon Sep 17 00:00:00 2001 From: ize-302 Date: Fri, 13 Sep 2024 13:38:04 +0100 Subject: [PATCH] =?UTF-8?q?docs:=20update=20commit=20types=20=F0=9F=93=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0234adc..bee8cb3 100644 --- a/README.md +++ b/README.md @@ -40,19 +40,21 @@ gitmo --help ## Commit types +``` | Commit Type | Title | Description | Emoji | | ----------- | ------------------------ | ----------------------------------------------------------------------------------------------------------- | :---: | | `feat` | Features | A new feature | ✨ | -| `fix` | Bug Fixes | A bug Fix | 🐛 | +| `fix` | Bug Fixes | A bug Fix | 🐛 | | `docs` | Documentation | Documentation only changes | 📚 | -| `style` | Styles | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) | 💎 | +| `style` | Styles | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) | 💄 | | `refactor` | Code Refactoring | A code change that neither fixes a bug nor adds a feature | 📦 | | `perf` | Performance Improvements | A code change that improves performance | 🚀 | | `test` | Tests | Adding missing tests or correcting existing tests | 🚨 | -| `build` | Builds | Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) | 🛠 | -| `ci` | Continuous Integrations | Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) | ⚙️ | -| `chore` | Chores | Other changes that don't modify src or test files | ♻️ | -| `revert` | Reverts | Reverts a previous commit | 🗑 | +| `build` | Builds | Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) | 🛠 | +| `ci` | Continuous Integrations | Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) | ⚙️ | +| `chore` | Chores | Other changes that don't modify src or test files | ♻️ | +| `revert` | Reverts | Reverts a previous commit | 🗑 | +``` ## How to commit