# Git Workflow

> Git workflow automation - staging, committing, branching with best practices Use when this capability is needed.

- Skill: `tomevault-io/git-workflow-4` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/git-workflow-4`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/git-workflow-4/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-4

---

# Git Workflow Skill

## Branches
- `main` / `master` - production
- `develop` - integration
- `feature/description` - new features
- `fix/issue-description` - bug fixes

## Workflow
```
git checkout -b feature/my-feature
# Make changes
git add -A
git commit -m "feat: add feature"
git push origin feature/my-feature
# Create PR
```

## Commits
- `feat:` new feature
- `fix:` bug fix
- `docs:` documentation
- `refactor:` non-functional change
- `test:` adding tests
- `chore:` maintenance

## Best Practices
- Small, focused commits
- Include issue references: "Fixes #123"

---
> Source: [11vated/Nexus](https://github.com/11vated/Nexus) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-06-16 -->

