Git 高阶实践:提交规范、分支策略与变基

# 常用分支模型
main
 ├─ release/x.y
 ├─ feat/xxx
 ├─ fix/yyy

# 交互式变基
git rebase -i HEAD~5

# 规范提交
feat(ui): add dark mode toggle