Files
egutierrez 47fac22230 chore: auto-commit (799 archivos)
- .claude/CLAUDE.md
- .claude/commands/subagentes.md
- .claude/rules/INDEX.md
- .mcp.json
- bash/functions/cybersecurity/analyze_dns.md
- bash/functions/cybersecurity/audit_http_headers.md
- bash/functions/cybersecurity/audit_ssh_config.md
- bash/functions/cybersecurity/check_firewall.md
- bash/functions/cybersecurity/detect_suspicious_users.md
- bash/functions/cybersecurity/encrypt_file.md
- ...

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-14 00:28:20 +02:00

1.9 KiB

name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, params, output, tested, tests, test_file_path, file_path, source_repo, source_license, source_file
name kind lang domain version purity signature description tags uses_functions uses_types returns returns_optional error_type imports params output tested tests test_file_path file_path source_repo source_license source_file
git_log_visual function bash shell 1.0.0 impure git_log_visual([--count N: int], [--author X: string], [--since D: string], [--all]) -> void Muestra el historial de commits Git con grafo visual, colores y formato legible (hash, fecha, autor, mensaje, ramas). Soporta filtros por cantidad, autor, fecha y modo todas-las-ramas. Pagina con less.
bash
git
log
history
graph
pendiente-usar
false error_go_core
name desc
--count número de commits a mostrar (default: 20)
name desc
--author filtrar por nombre o email del autor (parcial, igual que git --author)
name desc
--since mostrar solo commits desde esta fecha (ej: '1 week ago', '2025-01-01')
name desc
--all incluir commits de todas las ramas, no solo la actual
historial de commits paginado con less -R; exit code 1 si no es un repo Git false
bash/functions/shell/git_log_visual.sh https://gitea-dgg044oo04woo4ggcsws4gk0.organic-machine.com/egutierrez/DevLauncher.git MIT scripts/linux/git_utils/historial_commits.sh

Ejemplo

source bash/functions/shell/git_log_visual.sh

# Últimos 20 commits (default)
git_log_visual

# Últimos 50 commits de todas las ramas
git_log_visual --count 50 --all

# Commits de un autor esta semana
git_log_visual --author "lucas" --since "1 week ago"

# Commits de hoy en todas las ramas
git_log_visual --since "00:00:00" --all --count 100

Notas

Usa less -R --quit-if-one-screen para paginar: si el log cabe en pantalla, no abre el paginador. El formato incluye hash corto (amarillo), fecha (cyan), autor (verde), mensaje y refs de ramas (rojo).