Created
May 12, 2011 20:27
-
-
Save rodrigo-galba/969367 to your computer and use it in GitHub Desktop.
Trabalhando com branch remoto
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
. Criando o branch remoto | |
git push origin nome_do_branch_remoto | |
. para baixar um branch remoto: | |
git checkout -b nome_do_branch_local origin/nome_do_branch_remoto | |
. para subir alteracoes pro branch remoto: | |
git push origin origin/branch_remoto | |
. para alteracoes, use o commit normalmente |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment