Soluciones++ para GitHub

Página oficial de GitHub





Algunos tips para GitHub en Soluciones++



Comentarios

  1. Subir repositorio a GitHub:

    Desde la web de github
    Creamos un nuevo repositorio, dejamos el check de crear README sin marcar.

    Desde la terminal del equipo:

    $ git init
    $ git add .
    $ git commit -m "first commit"
    $ git remote add origin https://github.com/USUARIO/PROYECTO.git
    $ git push -u origin master

    ResponderBorrar
  2. Para clonar un repositorio de nuestra cuenta de GitHub:
    Con git clone https://github.com/USUARIO/PROYECTO.git copiamos un proyecto de GitHub a nuestra pc.

    ResponderBorrar

Publicar un comentario

Entradas más populares de este blog

Ruta hacia el desarrollador web full stack en Soluciones++

Soluciones++ para VBA