Gestiona el conjunto de repositorios rastreados ("remotos"). Más información: https://git-scm.com/docs/git-remote.
git remote -v
git remote show {{nombre_remoto}}
git remote add {{nombre_remoto}} {{url_remoto}}
--add
para mantener la URL existente):git remote set-url {{nombre_remoto}} {{nueva_url}}
git remote remove {{nombre_remoto}}
git remote rename {{nombre_antiguo}} {{nombre_nuevo}}