[2025-06-30] 添加Git分支管理规范
All checks were successful
Publish to Confluence / confluence (push) Successful in 17s

This commit is contained in:
liuxiaohua 2025-06-30 15:14:17 +08:00
parent 37b741b6f1
commit 8c597516c5

View File

@ -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