1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.es/common/git-remote.md
Darío Hereñú ab46f0494f
git-remote: update Spanish translation (#11662)
* git-remote: update Spanish translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-12-24 10:50:33 +05:30

32 lines
719 B
Markdown

# git remote
> Gestiona el conjunto de repositorios rastreados ("remotos").
> Más información: <https://git-scm.com/docs/git-remote>.
- Muestra una lista de los remotos existentes, sus nombres y URL:
`git remote -v`
- Muestra información de un remoto:
`git remote show {{nombre_remoto}}`
- Añade un remoto:
`git remote add {{nombre_remoto}} {{url_remoto}}`
- Cambia la URL de un remoto (utiliza `--add` para mantener la URL existente):
`git remote set-url {{nombre_remoto}} {{nueva_url}}`
- Muestra la URL de un remoto:
`git remote get-url {{nombre_del_remoto}}`
- Elimina un remoto:
`git remote remove {{nombre_remoto}}`
- Renombra un remoto:
`git remote rename {{nombre_antiguo}} {{nombre_nuevo}}`