Con SSH
Quick setup — if you’ve done this kind of thing before
or
…or create a new repository on the command line
echo "# lab_Beto" >> README.md git init git add README.md git commit -m "first commit" git remote add origin git@github.com:jalbertomr/lab_Beto.git git push -u origin master
…or push an existing repository from the command line
git remote add origin git@github.com:jalbertomr/lab_Beto.git git push -u origin master
Con HTTP
Quick setup — if you’ve done this kind of thing before
or
…or create a new repository on the command line
echo "# lab_Beto" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/jalbertomr/lab_Beto.git git push -u origin master
…or push an existing repository from the command line
No hay comentarios:
Publicar un comentario