ASD

Git Advanced Workflows

Domina flujos avanzados de Git —rebase, cherry-pick, bisect, worktrees y reflog— para mantener un historial limpio y recuperarte de cualquier situación.

Estrellas
38.8k

en todo el repo

Actividad
47

0–100, la ruta de este skill

Actualizado
hace 2 meses

último commit aquí

Commits
1

últimos 90 días

Contexto
1.3k tok

67 tok en reposo

Paquete
2 archivos

9 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add wshobson/agents --skill git-advanced-workflows --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Aplica rebase interactivo para editar historial de commits (pick, reword, squash, fixup, drop)
  • Aplica cherry-pick de commits específicos entre ramas
  • Ejecuta bisect (manual o automatizado con script) para localizar el commit que introdujo un bug
  • Gestiona worktrees para trabajar en varias ramas simultáneamente
  • Usa reflog para recuperar commits o ramas perdidos

Úsalo cuando

  • Limpiar historial de commits antes de fusionar
  • Aplicar commits específicos entre ramas
  • Encontrar el commit que introdujo un bug
  • Recuperarse de errores de Git o commits perdidos

No lo uses cuando

    Qué lo activa

    Di cualquiera de estas frases y el agente debería cargar este skill.

    • Ayúdame a limpiar mi historial de commits con rebase interactivo antes de abrir el PR
    • Necesito encontrar con git bisect qué commit rompió el build
    • Quiero recuperar una rama que borré por accidente usando reflog
    • Cómo trabajo en dos features a la vez sin hacer stash

    SKILL.md

    En inglés

    Git Advanced Workflows

    Master advanced Git techniques to maintain clean history, collaborate effectively, and recover from any situation with confidence.

    When to Use This Skill

    • Cleaning up commit history before merging
    • Applying specific commits across branches
    • Finding commits that introduced bugs
    • Working on multiple features simultaneously
    • Recovering from Git mistakes or lost commits
    • Managing complex branch workflows
    • Preparing clean PRs for review
    • Synchronizing diverged branches

    Core Concepts

    1. Interactive Rebase

    Interactive rebase is the Swiss Army knife of Git history editing.

    Common Operations:

    • pick: Keep commit as-is
    • reword: Change commit message
    • edit: Amend commit content
    • squash: Combine with previous commit
    • fixup: Like squash but discard message
    • drop: Remove commit entirely

    Basic Usage:

    # Rebase last 5 commits
    git rebase -i HEAD~5
    
    # Rebase all commits on current branch
    git rebase -i $(git merge-base HEAD main)
    
    # Rebase onto specific commit
    git rebase -i abc123
    

    2. Cherry-Picking

    Apply specific commits from one branch to another without merging entire branches.

    # Cherry-pick single commit
    git cherry-pick abc123
    
    # Cherry-pick range of commits (exclusive start)
    git cherry-pick abc123..def456
    
    # Cherry-pick without committing (stage changes only)
    git cherry-pick -n abc123
    
    # Cherry-pick and edit commit message
    git cherry-pick -e abc123
    

    3. Git Bisect

    Binary search through commit history to find the commit that introduced a bug.

    # Start bisect
    git bisect start
    
    # Mark current commit as bad
    git bisect bad
    
    # Mark known good commit
    git bisect good v1.0.0
    
    # Git will checkout middle commit - test it
    # Then mark as good or bad
    git bisect good  # or: git bisect bad
    
    # Continue until bug found
    # When done
    git bisect reset
    

    Automated Bisect:

    # Use script to test automatically
    git bisect start HEAD v1.0.0
    git bisect run ./test.sh
    
    # test.sh should exit 0 for good, 1-127 (except 125) for bad
    

    4. Worktrees

    Work on multiple branches simultaneously without stashing or switching.

    # List existing worktrees
    git worktree list
    
    # Add new worktree for feature branch
    git worktree add ../project-feature feature/new-feature
    
    # Add worktree and create new branch
    git worktree add -b bugfix/urgent ../project-hotfix main
    
    # Remove worktree
    git worktree remove ../project-feature
    
    # Prune stale worktrees
    git worktree prune
    

    5. Reflog

    Your safety net - tracks all ref movements, even deleted commits.

    # View reflog
    git reflog
    
    # View reflog for specific branch
    git reflog show feature/branch
    
    # Restore deleted commit
    git reflog
    # Find commit hash
    git checkout abc123
    git branch recovered-branch
    
    # Restore deleted branch
    git reflog
    git branch deleted-branch abc123
    

    Detailed patterns and worked examples

    Detailed pattern documentation lives in references/details.md. Read that file when the navigation tier above is insufficient.

    Best Practices

    1. Always Use --force-with-lease: Safer than --force, prevents overwriting others' work
    2. Rebase Only Local Commits: Don't rebase commits that have been pushed and shared
    3. Descriptive Commit Messages: Future you will thank present you
    4. Atomic Commits: Each commit should be a single logical change
    5. Test Before Force Push: Ensure history rewrite didn't break anything
    6. Keep Reflog Aware: Remember reflog is your safety net for 90 days
    7. Branch Before Risky Operations: Create backup branch before complex rebases
    # Safe force push
    git push --force-with-lease origin feature/branch
    
    # Create backup before risky operation
    git branch backup-branch
    git rebase -i main
    # If something goes wrong
    git reset --hard backup-branch
    

    Common Pitfalls

    • Rebasing Public Branches: Causes history conflicts for collaborators
    • Force Pushing Without Lease: Can overwrite teammate's work
    • Losing Work in Rebase: Resolve conflicts carefully, test after rebase
    • Forgetting Worktree Cleanup: Orphaned worktrees consume disk space
    • Not Backing Up Before Experiment: Always create safety branch
    • Bisect on Dirty Working Directory: Commit or stash before bisecting

    Recovery Commands

    # Abort operations in progress
    git rebase --abort
    git merge --abort
    git cherry-pick --abort
    git bisect reset
    
    # Restore file to version from specific commit
    git restore --source=abc123 path/to/file
    
    # Undo last commit but keep changes
    git reset --soft HEAD^
    
    # Undo last commit and discard changes
    git reset --hard HEAD^
    
    # Recover deleted branch (within 90 days)
    git reflog
    git branch recovered-branch abc123
    

    Reproducido de wshobson/agents bajo licencia MIT. Leer esta página en markdown.

    Archivos

    2 archivos en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

    Antes de instalar

    Necesita en el PATH:git

    Detalles

    Creador
    wshobson
    Licencia
    MIT
    Recursos incluidos
    referencias
    Repositorio
    wshobson/agents
    Código fuente
    Ver SKILL.md

    Etiquetas

    Más de wshobson/agents

    Este repo incluye 180 skills. Si instalas uno, normalmente ya tienes los demás.

    Úsalo al seleccionar y colocar iconos, imágenes, SVGs, diagramas o infografías de apoyo aprobados en un PPTX editable.

    Costo de contexto al activarse
    344 tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 26 días
    documentos

    Úsalo cuando pidan optimizar un prompt, mejorar su rendimiento, diseñar una plantilla, aplicar chain-of-thought, few-shot prompting o técnicas avanzadas de prompt engineering para producción.

    Costo de contexto al activarse
    1.3k tok
    Tamaño del paquete
    10 archivos
    Última actualización
    el mes pasado
    herramientas desarrollo

    Úsalo al redactar o reparar una especificación JSON con coordenadas explícitas para un PPTX editable.

    Costo de contexto al activarse
    489 tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 26 días
    documentos

    Úsalo para validar o reparar un PPTX editable en cuanto a geometría, accesibilidad, editabilidad nativa, linaje de fuente e integridad del paquete OOXML.

    Costo de contexto al activarse
    409 tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 26 días
    documentos

    Úsalo para analizar un PPTX de referencia en modo solo lectura: estructura, tema, tipografía, ritmo de layout, diagnósticos, catálogos de plantillas derivados o inspección segura del paquete OOXML.

    Costo de contexto al activarse
    689 tok
    Tamaño del paquete
    8 archivos
    Última actualización
    hace 26 días
    documentos

    Úsalo al preparar la narrativa, las fuentes y el contexto de diseño para un nuevo deck PPTX editable.

    Costo de contexto al activarse
    415 tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 26 días
    documentos

    Skills relacionados

    Domina el sistema de tipos avanzado de TypeScript: generics, tipos condicionales, mapped types, template literals y utility types para aplicaciones type-safe.

    Costo de contexto al activarse
    2k tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 2 meses
    herramientas desarrollo

    Patrones de resiliencia en Python: reintentos automáticos, backoff exponencial, timeouts y decoradores tolerantes a fallos para servicios.

    Costo de contexto al activarse
    1.5k tok
    Tamaño del paquete
    2 archivos
    Última actualización
    hace 2 meses
    herramientas desarrollo

    Organización de proyectos Python, arquitectura de módulos y diseño de APIs públicas con __all__, para nuevos proyectos o reorganización de directorios.

    Costo de contexto al activarse
    1.7k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 6 meses
    herramientas desarrollo