viernes, 24 de junio de 2016

GitHub como alternativa al Git en vultr

 Con SSH

Quick setup — if you’ve done this kind of thing before

or
We recommend every repository include a README, LICENSE, and .gitignore.

…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
We recommend every repository include a README, LICENSE, and .gitignore.

…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

git remote add origin https://github.com/jalbertomr/lab_Beto.git git push -u origin master
 

No hay comentarios:

Publicar un comentario