# Git

> Git workflows, branching strategies, and hooks. Use when this capability is needed.

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

---


# Git Skill

Expert assistance for Git workflows and best practices.

## Capabilities

- Configure Git workflows
- Set up branching strategies
- Implement Git hooks
- Handle merge strategies
- Configure commit conventions

## Branching Strategy

```
main
  └── develop
        ├── feature/user-auth
        ├── feature/dashboard
        └── bugfix/login-issue
```

## Git Hooks (Husky)

```json
// package.json
{
  "scripts": {
    "prepare": "husky install"
  }
}
```

```bash
# .husky/pre-commit
npm run lint
npm run test:staged
```

## Target Processes

- git-workflow
- code-review
- team-collaboration

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/a5c-ai) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-16 -->

