Skip to content

Instantly share code, notes, and snippets.

@keyserfaty
Created September 20, 2015 19:08
Show Gist options
  • Save keyserfaty/98ff41d33e7ad38c3ab9 to your computer and use it in GitHub Desktop.
Save keyserfaty/98ff41d33e7ad38c3ab9 to your computer and use it in GitHub Desktop.
Git workflow
Configuración:
git config --global user.name nombredeusuario
git config --global user.email emaildeusuario
Work flow:
git status
git add .
git commit -m "Mensaje"
Subirlo a Github: http://gitref.org/remotes/
git remote add origin master http://.....
git push -u origin master
Descargarlo de Github:
git pull --rebase
Clonar uno ya que está subido a una máquina que no lo tiene:
git clone http://....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment