Formation Git en vidéo

Résumé de commandes pour manipuler des branches dans Git

Sur quelle branche sommes-nous ?

git branch

Créer une branche

git branch <branche>

Se déplacer vers une branche

git checkout <branche>

Fusionner des branches

Il faut avant se positionner sur la branche qui recevra les informations de l'autre branche.

git merge <branche>

Supprimer une branche

git branch -d <branche>

Déplacer une branche vers un commit

git branch --force <branche> <commit>