Añadidos arhcivos basicos de repos

This commit is contained in:
2026-03-18 21:27:21 +01:00
commit 4bc7a7d291
31 changed files with 6506 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
# Include: git-verify-clean
Verifica que el repositorio esté en estado limpio antes de operaciones de git.
## Verificaciones
```bash
git status --short
```
## Casos
### Working tree limpio (sin output)
✓ Continuar con la operación
### Working tree con cambios
⚠ Advertencia: Hay cambios sin commitear
**Opciones:**
1. Stagear y commitear cambios primero
2. Hacer stash de cambios temporalmente
3. Cancelar operación
**STOP**: No continuar hasta que el working tree esté limpio.