Skip to content

Instantly share code, notes, and snippets.

@felipecabargas
Last active August 29, 2015 13:56
Show Gist options
  • Save felipecabargas/9261802 to your computer and use it in GitHub Desktop.
Save felipecabargas/9261802 to your computer and use it in GitHub Desktop.
X Mandamientos de GIT
git fetch origin
git checkout your-branch
git push origin your-branch:spike-your-branch
git branch your-branch-backup
git rebase master
rspec
git push origin your-branch --force
git checkout master
git merge your-branch --no-ff
rspec
git push origin master
git fetch origin
gco your-branch
ggpush your-branch:spike-your-branch
gb your-branch-backup
git rebase master
rspec
ggpush your-branch -f
gco master
gm your-branch --no-ff
rspec
ggpush
@felipecabargas
Copy link
Author

Estos comandos son el flujo a seguir para hacer un merge a master en los proyectos del equipo Penguin de Acid Labs

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