drenzzo
4/1/2020 - 8:57 PM

Operaciones con Repositorios

#ref: https://help.github.com/es/github/using-git/changing-a-remotes-url
#listar repos
$ git remote -v

#agregar repo
$ git remote add <nombre_repo> <url_repo>
Example:
$ git remote add origin https//github.com/repodemo

#renombrar repo
$ git remote rename <nombre_actual> <nombre_nuevo>

#eliminar repo
$ git remote rm <nombre_repo>

#cambiar url repo
$ git remote set-url <nombre_repo> <url_nueva>