Last active
October 18, 2025 21:59
-
Star
(301)
You must be signed in to star a gist -
Fork
(139)
You must be signed in to fork a gist
-
-
Save cgonzalezdai/cc33db72a6fe5178637aabb562eae35c to your computer and use it in GitHub Desktop.
Revisions
-
cgonzalezdai revised this gist
Jul 2, 2016 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,7 @@ Creamos un nuevo repositorio en <https://github.com>. Le damos nombre, descripción, seleccionamos si va a ser un proyecto publico o privado si es el caso, y dejamos el check de crear README sin marcar. Le damos a __crear repositorio__ y con esto ya tenemos el repositorio donde alojaremos nuestro proyecto. ### desde la terminal del equipo donde esta el proyecto que queremos subir a github Nos vamos a la carpeta del proyecto y ejecutamos estos comandos. ``` git init -
cgonzalezdai revised this gist
Jul 2, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ # Como subir un proyecto local a github. ### desde la web de github Creamos un nuevo repositorio en <https://github.com>. Le damos nombre, descripción, seleccionamos si va a ser un proyecto publico o privado si es el caso, y dejamos el check de crear README sin marcar. Le damos a __crear repositorio__ y con esto ya tenemos el repositorio donde alojaremos nuestro proyecto. ### desde la terminal del equipo donde esta el proyecto que queremos subir a github ``` git init -
cgonzalezdai revised this gist
Jul 2, 2016 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,7 @@ Creamos un nuevo repositorio en <https://github.com>. Le damos nombre, descripción, seleccionamos si va a ser un proyecto publico o privado si es el caso, y dejamos el check de crear README sin marcar. Le damos a _crear repositorio_ y con esto ya tenemos el repositorio donde alojaremos nuestro proyecto. ### desde la terminal del equipo donde esta el proyecto que queremos subir a github ``` git init git add . @@ -11,4 +12,6 @@ git commit -m "first commit" git remote add origin https://github.com/NOMBRE_USUARIO/NOMBRE_PROYECTO.git git push -u origin master ``` -
cgonzalezdai revised this gist
Jul 2, 2016 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,11 @@ Creamos un nuevo repositorio en <https://github.com>. Le damos nombre, descripci Le damos a _crear repositorio_ y con esto ya tenemos el repositorio donde alojaremos nuestro proyecto. ### desde la terminal del equipo donde esta el proyecto que queremos subir a github git init git add . git commit -m "first commit" git remote add origin https://github.com/NOMBRE_USUARIO/NOMBRE_PROYECTO.git git push -u origin master -
cgonzalezdai created this gist
Jul 2, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # Como subir un proyecto local a github. ### desde la web de github Creamos un nuevo repositorio en <https://github.com>. Le damos nombre, descripción, seleccionamos si va a ser un proyecto publico o privado si es el caso, y dejamos el check de crear README sin marcar. Le damos a _crear repositorio_ y con esto ya tenemos el repositorio donde alojaremos nuestro proyecto. ### desde la terminal del equipo donde esta el proyecto que queremos subir a github git init git add . git commit -m "first commit" git remote add origin https://github.com/NOMBRE_USUARIO/NOMBRE_PROYECTO.git git push -u origin master