Show Menu
Cheatography

GitCheatSheet Cheat Sheet by

Apuntes de comandos GIT

Comandos GIT

CONFIG­URACIÓN INICIAL
git config --global user.name [NOMBRE] Nombre de usuario
git config --global user.email [EMAIL] Correo del usuario
 
COMANDOS
git init inicia­lizar reposi­torio
git add . colocar en stage
git commit -m "­[ET­IQU­ETA­]" realizar commit a un cambio
git log muestra los commit realiz­ados. muestra el codigo hash de estos que se pueden usar luego con otros comandos
git show [6 primeros digitos del hash] muestra los cambios realizados en un commit especifico
git diff [6 primeros digitos de hash 1] [6 primeros digitos de hash 2] muestra los cambios realizados de un commit hacia otro
git reset HEAD hace reset a a los cambios que esten en staging en este momento
git checkout [6 primeros digitos del hash] hace un rollback desde el commit especi­ficado
git branck muestra los "­bra­nch­" existentes
git diff branch1 branch2 compara 2 branch
git checkout [branch] / git checkout -b [branch] se cambia de branch / se crea un nuevo branch y se mueve a este
git merge [branch1] [branch2] une 2 branch
 
COMANDOS REMOTO
git remote add origin [ruta del reposi­torio remoto] mueve a stage nuestro contenido apuntando a un reposi­torio remoto
git push origin [branch local] envía el contenido de nuestro brach local hacia el reposi­torio remoto
git pull origin [branch local] Obtiene el contenido del reposi­torio remoto hacia nuestro branch local
git clone [ruta del reposi­torio remoto] realiza una clonación del contenido de un reposi­torio remoto a una ruta local vacía
 

Comments

No comments yet. Add yours below!

Add a Comment

Your Comment

Please enter your name.

    Please enter your email address

      Please enter your Comment.

          Related Cheat Sheets

          Git Cheat Sheet

          More Cheat Sheets by edgarchavc

          BashCheatSheet Cheat Sheet