-
Laurent Heirendt authoredLaurent Heirendt authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
part-5-branches.md 718 B
Branches
Expérimentez en toute sécurité

Une branche = Une fonctionnalité
$ git checkout -b noel

Navigation
Lister les branches
$ git branch
Se positionner dans une branche
$ git checkout <branch_name>
$ git commit

Fusion
En anglais, merge
$ git checkout master
$ git diff master..noel
$ git merge noel

Nettoyage
$ git branch -d noel
