Git 提交工作流,当用户需要提交代码、生成规范提交消息、拆分多模块改动时使用。
执行标准化的 Git 提交流程,确保提交历史符合 Conventional Commit Messages。
git status 和 git diff 识别改动逻辑。git add . (或特定文件) 和 git commit -m "<message>"。git push。<type>(<scope>): <subject>
feat: New featurefix: Bug fixdocs: Documentation only changesstyle: Changes that do not affect the meaning of the code (white-space, formatting, etc)refactor: A code change that neither fixes a bug nor adds a featureperf: A code change that improves performancetest: Adding missing tests or correcting existing testschore: Changes to the build process or auxiliary tools and libraries.。feat(auth): add google oauth2 supportfix(db): resolve connection leak in productionrefactor(utils): simplify date format logic