git-workflow

Installation
SKILL.md

Git Workflow Skill

This skill provides guidelines for interacting with the Git repository and generating patches.

Steps

  1. Clone Repository: git clone https://github.com/<owner>/<repo>.git
  2. Make Changes: Edit files in the cloned repository.
  3. Generate Patch:
    • For a simple diff: git diff > ../output/fix.patch
    • For a proper commit-based patch:
      git add .
      git commit -m "Fix: describe the fix"
      git format-patch -1 HEAD --output-directory=../output/
      
Installs
7
GitHub Stars
64
First Seen
Jun 28, 2026
git-workflow — google-gemini/gemini-managed-agents-templates