New to Claude Skills? Learn how to install them →

code-yeongyu on GitHub

Git Master

Free

Efficiently manage Git history and commits.

Get this skill

Free · Opens the source repo

What Git Master does

Git Master is a specialized skill designed for users who need to navigate and manipulate Git history with precision. It is particularly useful in scenarios where tasks require committing changes, investigating the history of commits, or rewriting commit history through rebasing and squashing. The skill emphasizes a conservative approach, ensuring that operations are only performed when explicitly requested by the user, thereby reducing the risk of unintended changes to the repository.

The skill operates in distinct modes: COMMIT, REBASE, HISTORY, and STATUS. Each mode is tailored to specific tasks, allowing users to stage and commit changes, rebase or rewrite history, answer questions about commit history, or inspect the current state of the branch without making changes. By adhering to a strict set of guidelines, Git Master ensures that operations are performed safely and accurately, preserving the integrity of the repository.

Users will appreciate the skill's ability to gather independent facts about the repository state before proceeding with any operations. It executes a series of Git commands to provide relevant information, such as the current branch, recent commit history, and any differences in the working tree. This evidence-based approach helps users make informed decisions about their Git operations.

Git Master is ideal for developers and designers who frequently work with Git and need a reliable tool to manage their version control tasks. Whether you are staging changes, investigating commit history, or performing complex history rewrites, this skill provides the necessary functionality to streamline your workflow and maintain a clean project history.

When to use it

Use Git Master when you need to perform Git operations like committing changes, rebasing, or investigating commit history.

When not to use it

Do not use this skill for ordinary code edits or tasks that do not involve Git history management.

What you can build with it

Committing Changes

Use Git Master to stage and commit changes with the correct message style and atomic grouping.

Investigating Commit History

When you need to know who made a change or when it was added, Git Master can provide precise answers.

Rewriting History

For complex history operations like rebasing or squashing commits, Git Master ensures safety and clarity.

How to install Git Master

View source

1. Install with the skills CLI

npx skills add code-yeongyu/oh-my-openagent/git-master --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by code-yeongyu

Git Master

Use this skill when the user asks you to operate on Git history or answer a Git-history question. Be exact, conservative, and evidence-led. Read the repository state before you infer anything.

Mode Gate

Classify the request first:

  • COMMIT: stage and commit local changes.
  • REBASE: rebase, squash, fixup, autosquash, reorder, split, or otherwise rewrite branch history.
  • HISTORY: answer when, where, who, why, or which commit changed something.
  • STATUS: inspect branch, diff, or working-tree state without changing it.

Do not commit, rebase, push, force-push, reset, stash-pop, or delete anything unless the user explicitly asked for that operation. If the request is only investigative, report findings and stop.

Ground Truth

Gather independent facts in parallel when the tools allow it:

git status --short
git diff --stat
git diff --staged --stat
git branch --show-current
git log -30 --oneline
git log -30 --pretty=format:%s
git rev-parse --abbrev-ref @{upstream}
git merge-base HEAD origin/main
git merge-base HEAD origin/master

Missing upstream or missing main/master is normal. Fall back to the best available branch or report the missing fact. Never treat a failed lookup as proof.

PR Body Evidence Attachments

When a PR body needs screenshots or terminal PNGs, use the repo reference at docs/reference/github-attachment-upload.md. The allowed hosting path is GitHub user attachments from the authenticated web attachment flow; never commit temporary images, never use GitHub Releases for PR evidence, and never use external image hosts. Do not log browser cookies, CSRF tokens, S3 form fields, or upload headers.

Commit Mode

Commit only the user's requested changes. Preserve unrelated dirty work.

  1. Detect message style from recent history. Use the dominant local pattern, language, and casing. Do not default to Conventional Commits unless the repo uses them.
  2. Inspect the full diff, not only filenames. Separate unrelated user edits from the requested commit.
  3. Build atomic groups by behavior, module, and revertability. Keep implementation and its direct tests together.
  4. Prefer multiple commits for unrelated concerns. A single commit is acceptable only when the changed files form one indivisible behavior or the user explicitly asks for one commit.
  5. Stage by path or hunk so each commit contains only its atomic group.
  6. Before each commit, verify git diff --staged --stat and enough staged diff to prove the group is right.
  7. Commit with the detected style. After each commit, verify git log -1 --oneline.

Grouping rules:

  • Split different features, modules, generated artifacts, config, docs, and test-only changes unless they are inseparable.
  • Keep generated files with the source change that produced them when omitting them would leave the repo inconsistent.
  • Never hide failing or unrelated changes inside a broad commit.

Final report: list commit hashes, messages, and any remaining uncommitted files.

Rebase Mode

History rewriting is a shared-impact operation.

  • Never rebase or rewrite main, master, dev, release branches, or a protected branch unless the user explicitly named that exact operation.
  • If commits may already be pushed, ask before force-pushing. Use --force-with-lease, never plain --force.
  • If the worktree is dirty, preserve it intentionally before rebasing. Do not stash-pop over conflicts without checking what changed.
  • For fixups, prefer git commit --fixup=<hash> followed by GIT_SEQUENCE_EDITOR=: git rebase -i --autosquash <base>.
  • For conflicts, read the conflicting files and resolve by intent. Do not choose ours/theirs blindly.
  • If a rebase goes wrong, use git rebase --abort first. Use reflog only after explaining the recovery path.

After rewriting, run the relevant tests or at least the project's cheapest smoke check, then show the new branch log from base to HEAD.

History Mode

Choose the Git tool by the question:

  • git log -S "text": when the count of an exact string changed.
  • git log -G "regex": when diffs touched lines matching a pattern.
  • git blame -L start,end -- file: who last changed specific lines.
  • git log --follow -- file: history across renames for one file.
  • git show <hash>: inspect the commit that appears relevant.
  • git bisect: find the first bad commit when there is a deterministic pass/fail command and known good/bad bounds.
  • git reflog: recover or explain recent local history movement.

Always cite the exact command evidence in the answer: commit hash, subject, file path, and line or diff context when relevant. If the evidence is ambiguous, say what remains unproven.

Safety Checks

Before any write to Git history:

  • Current branch is known.
  • Dirty work is accounted for.
  • Upstream/pushed status is known or explicitly unknown.
  • The operation matches the user's request.
  • Recovery path is known (rebase --abort, reflog hash, or untouched worktree).

Before finishing:

  • Run the most relevant verification available for the changed behavior or history operation.
  • Report commands that passed and any command you could not run.
  • Leave the worktree state explicit.

Frequently asked questions about Git Master

Similar skills