Skip to content

Instantly share code, notes, and snippets.

@gusreyes01
Created May 11, 2019 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gusreyes01/94bb1ad7dc4d12a470ead1171d921653 to your computer and use it in GitHub Desktop.
Save gusreyes01/94bb1ad7dc4d12a470ead1171d921653 to your computer and use it in GitHub Desktop.
Comandos básicos Github

Inicializamos Git

git init

Vemos el estatus de nuestro repositorio

git status

Indicamos el origen

git remote add origin https://github.com/gusreyes01/curso-python-proyecto.git

Agregamos los archivos al repositorio

git add .

Realizar commit

git commit -am “Hice algún cambio”

Git push origin

git push origin master

Remove all pyc files

git rm *.pyc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment