Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 178 Bytes

File metadata and controls

13 lines (9 loc) · 178 Bytes

Comandos para realizar o merge de uma branch em outra

git checkout <branch_fonte>
git pull
git checkout <branch_destino>
git pull
git merge <branch_fonte>
git push