git-workflow
Advanced git workflows with branch management, conflict resolution, and PR lifecycle
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__plugin_ruflo-core_ruflo__github_repo_analyzefor repository health metrics - Check diff risk — call
mcp__plugin_ruflo-core_ruflo__analyze_diff-riskbefore merging - Manage PRs — call
mcp__plugin_ruflo-core_ruflo__github_pr_managefor PR lifecycle operations - View metrics — call
mcp__plugin_ruflo-core_ruflo__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"
Loading supporting files
ruvnet/claude-flow · MIT · Revision 005a0ed25e64
Be the first to comment
Share what worked or leave a question for the creator.