git

Provide Git command references and guided workflows for repository management.

55|4|Updated Feb 5, 2026
One-click install
npx skills add https://github.com/bug-ops/zeph --skill git-bug-ops
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: git
Source: https://github.com/bug-ops/zeph/tree/main/.zeph/skills/git
Command: npx skills add https://github.com/bug-ops/zeph --skill git-bug-ops

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Git is the backbone of software collaboration, and teams often struggle to remember exact commands or assemble reliable workflows. This skill provides a concise, authoritative reference for performing common Git operations and reasoning about repository history, branches, and remotes.

Core Features & Use Cases

  • Command Reference: Quick access to the most-used Git commands for status, diff, commit, branch, merge, rebase, remote, stash, and tag management.
  • Guided Workflows: Step-by-step patterns for common tasks like feature development, code review, and release tagging.
  • Real-World Example: Inspect a feature branch's history, resolve a merge conflict, and push changes to a remote.

Quick Start

Ask me to run a git status on your repository or to show the latest commit history.

Frequently Asked Questions about git

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I resolve a merge conflict in git?

What's the best way to view commit history in a git repository?

What's the best way to view commit history in a git repository?

Viewing git commit history is done using the git log command. This skill satisfies commands for inspecting repository history, allowing you to check status, review diffs, and trace branch changes with examples and safety notes.

How do I stash changes before switching to a new git branch?

Stashing changes before a branch switch uses the git stash command to temporarily save uncommitted work. This skill provides command references and guided workflows for stash management to safely switch contexts without losing local diffs.

Can I revert a commit without rewriting git history?

You can revert a commit without rewriting history by using the git revert command, which creates a new commit that undoes the specified changes. This skill offers safety notes and command examples for reverting operations across local and collaborative repos.

How do I manage remote repositories and push local branch changes?

Managing remote repositories and pushing local branch changes involves using git remote and git push commands. This skill guides remote interactions and branch management to sync local development with collaborative repositories efficiently.