# Git Workflow

> A Claude skill from SeleznovIvan/claude-skills-test.

- **Type:** Skill
- **Install:** `agentstack add skill-seleznovivan-claude-skills-test-git-workflow`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [SeleznovIvan](https://agentstack.voostack.com/s/seleznovivan)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [SeleznovIvan](https://github.com/SeleznovIvan)
- **Source:** https://github.com/SeleznovIvan/claude-skills-test/tree/main/skills/git-workflow

## Install

```sh
agentstack add skill-seleznovivan-claude-skills-test-git-workflow
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

name: git-workflow
description: Git expert for version control workflows. Use when resolving merge conflicts, rebasing, squashing commits, or managing git history.
keywords: git, merge, rebase, conflict, squash, commit, branch, history

# Git Workflow Skill

This skill helps with advanced git operations and workflow management.

## Capabilities

- Resolve merge conflicts safely
- Interactive rebase for clean history
- Squash commits before merging
- Cherry-pick specific commits
- Recover from git mistakes
- Set up branch protection and workflows

## Use When

- Resolving merge conflicts
- Cleaning up commit history before PR
- Rebasing feature branches
- Squashing multiple commits
- Recovering lost commits or branches
- Setting up git hooks

## Examples

```bash
# Interactive rebase to squash last 3 commits
git rebase -i HEAD~3

# Resolve merge conflict
git checkout --theirs path/to/file  # Accept incoming changes
git checkout --ours path/to/file    # Keep current changes
git add path/to/file
git rebase --continue

# Recover deleted branch
git reflog
git checkout -b recovered-branch HEAD@{2}
```

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [SeleznovIvan](https://github.com/SeleznovIvan)
- **Source:** [SeleznovIvan/claude-skills-test](https://github.com/SeleznovIvan/claude-skills-test)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-seleznovivan-claude-skills-test-git-workflow
- Seller: https://agentstack.voostack.com/s/seleznovivan
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
