agentsclimarketplace

Git

Skill xiaobei930/cc-best/skills/git

🎭 cc-best: Turn Claude Code into a full dev team — PM→Lead→Dev→QA autonomous workflow. 44 commands · 19 skills · 8 agents · 43 rules · 30 hooks · auto-learning pipeline. | 一个插件,完整开发团队。

Install
npx -y skills add xiaobei930/cc-best --skill git

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

Git version control best practices: branching, commits, merging, conflict resolution, PR workflows. Use when managing branches, creating commits, merging code, or resolving conflicts.

SKILL.md

3.3 KB, as published. Nobody here has run it

Git 工作流技能

本技能提供 Git 版本控制的最佳实践。

快速参考

  • 推荐分支模型: GitHub Flow(main + feature 分支 + PR)
  • 提交规范: Conventional Commits(<type>(<scope>): <subject>
  • 合并策略: 功能分支 → Squash Merge,同步主分支 → Rebase,长期分支 → Merge

触发条件

git, commit, branch, merge, rebase, PR, pull request, conflict, stash

工作流程

  1. 检查状态: git status && git branch -a && git log --oneline -5
  2. 选择操作:
场景执行流程
创建功能分支git checkout -b feature/xxx → 开发 → 提交
提交代码git addgit commit → 验证
合并代码git checkout maingit merge → 推送
解决冲突查看冲突 → 手动解决 → git addgit rebase --continue
创建 PR推送分支 → gh pr create → 等待审查
  1. 执行后验证: git status, git log --oneline -3

分支命名规范

feature/add-user-auth     # 功能分支
fix/login-validation      # Bug 修复
hotfix/security-patch     # 热修复
release/v1.2.0            # 发布
refactor/database-layer   # 重构

提交类型

类型说明示例
feat新功能feat(auth): 添加 OAuth 登录
fixBug 修复fix(cart): 修复价格计算错误
docs文档更新docs(readme): 更新安装说明
refactor重构refactor(api): 重构用户服务
test测试test(user): 添加注册测试
chore构建/工具chore(deps): 更新依赖
perf性能优化perf(query): 优化搜索查询

合并策略选择

场景推荐策略
功能分支 → mainSquash Merge
main → 功能分支Rebase
长期分支同步Merge

最佳实践

  1. 小而频繁的提交,每个做一件事
  2. 有意义的提交信息,说明为什么
  3. 经常从主分支同步
  4. PR 前自检(lint、test、review)
  5. 不提交敏感信息
  6. 合并后删除功能分支

子文件索引

文件内容
commands-reference.md常用 Git 命令参考
pr-workflow.mdPull Request 流程
hooks-guide.mdGit Hooks 指南
delegation.md委派到专业 Agent

记住: Git 是协作的基石——清晰的分支策略和提交规范让团队协作事半功倍。

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.