You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -149,39 +143,6 @@ We welcome contributions! Follow these steps to get started.
149
143
git add .
150
144
git commit -m "Brief description of your changes"
151
145
```
152
-
#### Commit Message Format
153
-
154
-
We use [Commitizen](https://www.npmjs.com/package/commitizen) with the [git-cz](https://www.npmjs.com/package/git-cz) adapter to ensure consistent commit messages that follow a standard changelog style. This helps in generating changelogs and maintaining a clear project history.
155
-
156
-
Commit messages should follow this pattern:
157
-
158
-
```
159
-
<type>: [#<GIT-ISSUE>] <subject>
160
-
```
161
-
-**type**: The type of change that you're committing. It should be one of the following:
162
-
-**feat**: A new feature
163
-
-**fix**: A bug fix
164
-
-**docs**: Documentation only changes
165
-
-**style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
166
-
-**refactor**: A code change that neither fixes a bug nor adds a feature
167
-
-**perf**: A code change that improves performance
168
-
-**test**: Adding missing tests or correcting existing tests
169
-
-**chore**: Changes to the build process or auxiliary tools and libraries such as documentation generation
170
-
-**ci**: Changes to CI configuration files and scripts
171
-
172
-
-**GIT-ISSUE**: The Git issue ID associated with the change.
173
-
-**subject**: A brief description of the change.
174
-
175
-
### Example Commit Messages:
176
-
177
-
-`feat: [#1] Add user login functionality`
178
-
-`fix: [#24] Resolve navbar alignment issue`
179
-
-`chore: [#101] Update dependencies to latest versions`
180
-
181
-
### Using Commitizen with Husky
182
-
183
-
We have configured [Husky](https://www.npmjs.com/package/husky) to automatically run Commitizen when you commit changes. This is done using the `prepare-commit-msg` hook. Simply use the `git commit` command, and Commitizen will guide you through the commit message creation process.
0 commit comments