Last active
August 29, 2015 13:56
-
-
Save felipecabargas/9261802 to your computer and use it in GitHub Desktop.
X Mandamientos de GIT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Estos comandos son el flujo a seguir para hacer un merge a master en los proyectos del equipo Penguin de Acid Labs