From cc-best
Provides Git best practices: GitHub Flow branching, Conventional Commits, merging strategies (squash/rebase/merge), conflict resolution, PR workflows. Useful for managing branches, commits, merges, conflicts.
npx claudepluginhub xiaobei930/cc-best --plugin cc-bestThis skill is limited to using the following tools:
本技能提供 Git 版本控制的最佳实践。
Manages Git workflows: branching strategies (GitHub Flow, Git Flow), conventional commits, branch naming, PR checklists, and feature development processes. Use for commits, PRs, branches, conflicts, version control.
Guides Git branching strategies, branch naming conventions, and merge operations for GitHub Flow, GitFlow, and trunk-based development. Useful for creating branches, merging, pull requests, and workflow questions.
Provides git best practices including commit conventions, branching strategies, and pull request workflows. Useful for git operations, commits, branches, and PRs.
Share bugs, ideas, or general feedback.
本技能提供 Git 版本控制的最佳实践。
<type>(<scope>): <subject>)git, commit, branch, merge, rebase, PR, pull request, conflict, stash
git status && git branch -a && git log --oneline -5| 场景 | 执行流程 |
|---|---|
| 创建功能分支 | git checkout -b feature/xxx → 开发 → 提交 |
| 提交代码 | git add → git commit → 验证 |
| 合并代码 | git checkout main → git merge → 推送 |
| 解决冲突 | 查看冲突 → 手动解决 → git add → git rebase --continue |
| 创建 PR | 推送分支 → gh pr create → 等待审查 |
git status, git log --oneline -3feature/add-user-auth # 功能分支
fix/login-validation # Bug 修复
hotfix/security-patch # 热修复
release/v1.2.0 # 发布
refactor/database-layer # 重构
| 类型 | 说明 | 示例 |
|---|---|---|
| feat | 新功能 | feat(auth): 添加 OAuth 登录 |
| fix | Bug 修复 | fix(cart): 修复价格计算错误 |
| docs | 文档更新 | docs(readme): 更新安装说明 |
| refactor | 重构 | refactor(api): 重构用户服务 |
| test | 测试 | test(user): 添加注册测试 |
| chore | 构建/工具 | chore(deps): 更新依赖 |
| perf | 性能优化 | perf(query): 优化搜索查询 |
| 场景 | 推荐策略 |
|---|---|
| 功能分支 → main | Squash Merge |
| main → 功能分支 | Rebase |
| 长期分支同步 | Merge |
| 文件 | 内容 |
|---|---|
| commands-reference.md | 常用 Git 命令参考 |
| pr-workflow.md | Pull Request 流程 |
| hooks-guide.md | Git Hooks 指南 |
| delegation.md | 委派到专业 Agent |
记住: Git 是协作的基石——清晰的分支策略和提交规范让团队协作事半功倍。