Recuerda que en las ciencias un problema suele tener varias soluciones, de igual modo mostraremos lo más óptimo y eficiente.
Ejemplo 1: cómo conectar un repositorio remoto con un repositorio local
git remote add origin <remote_repo_url>git push --all origin
If you want to set all of your branches to
automatically use this remote repo when you use git pull, add --set-upstream to the push:
git push --all --set-upstream origin
Ejemplo 2: conecta el repositorio local a git remoto
git remote add origin <remote repository URL># Sets the new remotegit remote -v
# Verifies the new remote URLgit push origin master
Ejemplo 3: git connect al repositorio remoto
git init
git commit -m "[message]"git remote add origin "github repository link"git push -u origin master
Aquí tienes las comentarios y valoraciones
Te invitamos a añadir valor a nuestra información cooperando tu veteranía en las críticas.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)