7 lines
607 B
Markdown
7 lines
607 B
Markdown
|
|
## Git Workflow Requirements
|
||
|
|
- You must make a separate Git commit immediately after completing every individual, logical task (e.g., a bug fix, feature addition, or test case addition).
|
||
|
|
- Never accumulate multiple independent features or fixes into a single chunk of work.
|
||
|
|
- Automatically stage the files and generate a commit message matching Conventional Commits standards (e.g., `feat(auth): add login validation`).
|
||
|
|
- Do not ask for user confirmation before running `git add` and `git commit` locally.
|
||
|
|
- each `git commit` message must not more 100 words
|
||
|
|
- always increase APP_VERSION after each change.
|