·git-workflow

Complete git workflow patterns including GitHub Flow branching, atomic commits with interactive staging, and recovery operations using reflog. Essential patterns for clean history. Use when defining branching strategy or recovering git history.

8Installs·2Trend·@yonatangross

Installation

$npx skills add https://github.com/yonatangross/skillforge-claude-plugin --skill git-workflow

SKILL.md

Complete git workflow patterns: GitHub Flow branching, atomic commits, and recovery operations. Essential for maintaining clean, reviewable history.

| Undo commit | git reset --soft HEAD1 | git revert HEAD | | Wrong branch | cherry-pick + reset | cherry-pick + revert | | Lost commits | git reset --hard HEAD@{N} | N/A | | Bad rebase | git rebase --abort or reflog | reflog + force-with-lease |

| Branching model | GitHub Flow | Simple single-branch workflow, main is always deployable | | Merge strategy | Rebase over merge | Keeps history clean and linear, easier to bisect | | Branch naming | issue/ - | Links work to tracking, enables automation | | Commit granularity | Atomic (one thing) | Independent revert, clear history, easier review |

View raw

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/yonatangross/skillforge-claude-plugin --skill git-workflow
Category
>_Productivity
Verified
First Seen
2026-02-01
Updated
2026-02-18

Quick answers

What is git-workflow?

Complete git workflow patterns including GitHub Flow branching, atomic commits with interactive staging, and recovery operations using reflog. Essential patterns for clean history. Use when defining branching strategy or recovering git history. Source: yonatangross/skillforge-claude-plugin.

How do I install git-workflow?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/yonatangross/skillforge-claude-plugin --skill git-workflow Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor

Where is the source repository?

https://github.com/yonatangross/skillforge-claude-plugin