1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 23:17:58 +01:00

git-remote: add Spanish translation (#3669)

This commit is contained in:
Iván 2019-12-21 18:34:34 +00:00 committed by Starbeamrainbowlabs
parent f1e28e48c0
commit 6be7279fef

View file

@ -0,0 +1,24 @@
# 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`
- Añade un remoto:
`git remote add {{nombre_remoto}} {{url_remoto}}`
- Cambiar la URL de un remoto (utiliza `--add` para mantener la URL existente):
`git remote set-url {{nombre_remoto}} {{nueva_url}}`
- Elimina un remoto:
`git remote remove {{nombre_remoto}}`
- Renombra un remoto:
`git remote rename {{nombre_antiguo}} {{nombre_nuevo}}`