git checkout -b feature-new-branch master git add . git commit -m "primeiro commit" git add . git commit -m "segundo commit" git checkout master git merge feature-new-branch
git checkout master git commit -a -m "adiciona um commit na master atoa"
git checkout -b feature-new-branch master git add . git commit -m "primeiro commit" git add . git commit -m "segundo commit" git checkout master git merge feature-new-branch --squash
git checkout -b feature-new-branch main git add . git commit -m "primeiro commit" git add . git commit -m "segundo commit" git rebase main git checkout main git merge feature-new-branch --ff-only
git checkout main git commit -a -m "adiciona um commit na master atoa"
git checkout -b feature-new-branch master git add . git commit -m "primeiro commit" git add . git commit -m "segundo commit" git rebase master git checkout master git merge feature-new-branch --no-ff
felipefonsecarocha@gmail.com
By Felipe Fonseca Rocha
Existem diversas formas de realizar merge de branches no git. Nesse deck a gente discute 4 delas.
Curioso por natureza e grande apreciador de novos conhecimentos, independente da disciplina!