git merge

../../_images/branching_and_merging.png

Git branching and merging

git merge [nom-de-branche]

Source :

Froggit tutorial par Christophe Chaudier

git merge [nom-de-branche]

fusion dans la branche courante des commits de la branche.

git merge [depot]/[branche]

Source :

Froggit tutorial par Christophe Chaudier

git merge [depot]/[branche]

fusionne la branche du dépôt dans la branche locale ?

Merge a branch

To merge some_fixes branch into feature branch:

git checkout feature
git merge some_fixes