Skip to content

Instantly share code, notes, and snippets.

@Tapia641
Last active January 4, 2020 23:34
Show Gist options
  • Save Tapia641/0102a7fdcbc8da36e31dee5d841083a7 to your computer and use it in GitHub Desktop.
Save Tapia641/0102a7fdcbc8da36e31dee5d841083a7 to your computer and use it in GitHub Desktop.

Como subir un proyecto local 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

También:
git push https://git.... --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment