Git fundir 2 filiais

0

Estou apenas começando a usar o GIT, e estou tentando entender se estou correto. Digamos que tenhamos um branch Master , ramos Bug1 , Bug2 Se eu quiser mesclar ramo Bug1 em Bug2 , eu faria algo como:

git checkout bug2
git merge bug 1
git commit -m "Merged Branch bug1 into branch bug2"
git push

Então, é correto agrupar o branch Bug1 no branch Bug2 ?

    
por Rost 17.05.2018 / 21:48

1 resposta

0

Use o modo de patch para evitar conflitos. Por exemplo:

git pull origin master #pull from master

git checkout -p origin/bug1  #patch bug1 branch

git checkout -p origin/bug2  #patch bug2 branch

git checkout -b myMerge #rename branch

git commit -m "Patched diffs from branches bug1 and bug2"

git push

Referências

por 02.11.2018 / 05:31

Tags