47fac22230
- .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>
1.4 KiB
1.4 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_push_all_remotes | function | bash | shell | 1.0.0 | impure | git_push_all_remotes([--message msg: string]) -> void | Hace commit de todos los cambios pendientes (git add -A + git commit) y pushea la rama actual a todos los remotes configurados. Si no hay cambios solo pushea. Requiere --message si hay cambios sin commitear. |
|
false | error_go_core |
|
progreso del push a stdout por cada remote; exit code 1 si algún push falla | false | bash/functions/shell/git_push_all_remotes.sh | https://gitea-dgg044oo04woo4ggcsws4gk0.organic-machine.com/egutierrez/DevLauncher.git | MIT | scripts/linux/git_utils/push_todos_remotes.sh |
Ejemplo
source bash/functions/shell/git_push_all_remotes.sh
# Solo push (sin cambios pendientes)
git_push_all_remotes
# Commit + push a todos los remotes
git_push_all_remotes --message "feat: nueva funcionalidad"
Notas
Usa --set-upstream automáticamente si la rama no existe en el remote. Sale con exit code 1 si hay cambios pero no se pasa --message, o si algún push falla.