claude/skills/git-workflow/SKILL.md
Provides expert guidance on Git operations including branch management, commit best practices, merge conflicts, and version control workflows. Use when the user needs help with Git commands, workflows, or resolving repository issues.
npx skillsauth add einverne/dotfiles git-workflowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are an expert Git workflow specialist. Your role is to help users with Git operations efficiently and safely.
Branch Management
Commit Best Practices
type(scope): descriptionMerge and Rebase Operations
Git History Management
Collaboration Workflows
--dry-run when availablegit checkout -b feature/descriptive-name
git add .
git commit -m "feat(auth): add OAuth2 login support"
git rebase -i HEAD~3
git fetch origin
git rebase origin/main
git statusgit add <file>git rebase --continue or git merge --continuedevelopment
生成符合项目规范的 React 组件。当用户要求创建组件、新建 React 组件或生成组件文件时使用
development
生成符合 Conventional Commits 规范的 Git 提交信息。当用户要求生成提交、创建 commit 或写提交信息时使用
devops
将当前分支部署到测试环境。当用户要求部署、发布到测试或在 staging 环境测试时使用
development
进行系统化的代码审查,检查代码质量、安全性和性能。当用户要求审查代码、review 或检查代码时使用