Created
March 21, 2013 21:46
-
-
Save tavlima/5217105 to your computer and use it in GitHub Desktop.
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
# Condensar os ultimos N commits em um so. | |
# Marque como "squash" os commits que devem ser | |
# integrados com o item anterior, na lista | |
git rebase -i HEAD~N | |
# Remover um branch remoto (a diferenca eh os ":") | |
# REMOTE eh seu repositorio remoto (origin, por exemplo) | |
# BRANCH eh o nome do branch que voce quer remover | |
git push REMOTE :BRANCH | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment