# Git Workflow

> Advanced git workflows with branch management, conflict resolution, and PR lifecycle Use when this capability is needed.

- Skill: `tomevault-io/git-workflow-29` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/git-workflow-29`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/git-workflow-29/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/git-workflow-29

---


# 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

1. **Analyze repo** — call `mcp__hyrex__github_repo_analyze` for repository health metrics
2. **Check diff risk** — call `mcp__hyrex__analyze_diff-risk` before merging
3. **Manage PRs** — call `mcp__hyrex__github_pr_manage` for PR lifecycle operations
4. **View metrics** — call `mcp__hyrex__github_metrics` for merge frequency, review times, etc.

## Common workflows

### Feature branch
```bash
git checkout -b feat/my-feature
# ... make changes ...
# analyze diff before PR
# create PR with risk assessment
```

### Release branch
```bash
git checkout -b release/v1.2.0
# cherry-pick fixes
# analyze all diffs for risk
# merge when risk score is acceptable
```

## CLI alternative

```bash
npx @hyrex/cli@latest hooks pre-task --description "git workflow"
```

---
> Source: [akhilyad/deployy](https://github.com/akhilyad/deployy) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-05-22 -->

