diff --git a/文档/基础组件/20250627-Git分支管理规范(修订版).md b/文档/基础组件/20250627-Git分支管理规范(修订版).md index a940359..c50b7d4 100644 --- a/文档/基础组件/20250627-Git分支管理规范(修订版).md +++ b/文档/基础组件/20250627-Git分支管理规范(修订版).md @@ -209,17 +209,6 @@ 示例: -```bash -git commit -m "✨ [2025-06-01]: add OAuth2 support - -- Implement Wework OAuth2 provider -- Add token refresh mechanism - -Closes #123" -``` - -或者 - ```bash git commit -m ":sparkles: [2025-06-01]: add OAuth2 support @@ -279,7 +268,7 @@ git rebase origin/develop/20260601-s14 #- 提交变更 git add . -git commit -m "✨ [2025-06-01]: add OAuth2 support" +git commit -m ":sparkles: [2025-06-01]: add OAuth2 support" #- 推送功能分支 git push -u origin feature/20260603-user-auth @@ -315,7 +304,7 @@ git checkout -b hotfix/20250630-login-error master #- 修复问题并提交 git add . -git commit -m "🐛 [2025-06-30]: 修复用户数据为空引起的空指针异常" +git commit -m ":bug: [2025-06-30]: 修复用户数据为空引起的空指针异常" #- 测试后合并到master git checkout master