Git Workflow
Advanced git workflow automation for branch management and PR lifecycle.
When to use
When managing complex git operations — multi-branch workflows, release branching, conflict resolution, or PR coordination.
Steps
- Analyze repo — call
mcp__claude-flow__github_repo_analyzefor repository health metrics - Check diff risk — call
mcp__claude-flow__analyze_diff-riskbefore merging - Manage PRs — call
mcp__claude-flow__github_pr_managefor PR lifecycle operations - View metrics — call
mcp__claude-flow__github_metricsfor merge frequency, review times, etc.
Common workflows
Feature branch
git checkout -b feat/my-feature
# ... make changes ...
# analyze diff before PR
# create PR with risk assessment
Release branch
git checkout -b release/v1.2.0
# cherry-pick fixes
# analyze all diffs for risk
# merge when risk score is acceptable
CLI alternative
npx @claude-flow/cli@latest hooks pre-task --description "git workflow"