2020-11-10 11:17:06 +00:00
|
|
|
# git switch
|
|
|
|
|
2021-01-07 14:06:38 +00:00
|
|
|
> Basculez entre les branches Git. Nécessite la version 2.23+ de Git.
|
2020-11-10 11:17:06 +00:00
|
|
|
> Voir egalement `git checkout`.
|
2021-01-08 15:23:23 +00:00
|
|
|
> Plus d'informations: <https://git-scm.com/docs/git-switch>.
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
- Baculer sur une branche existante :
|
|
|
|
|
|
|
|
`git switch {{nom_de_branche}}`
|
|
|
|
|
|
|
|
- Créer une nouvelle branche et basculer dessus :
|
|
|
|
|
|
|
|
`git switch --create {{nom_de_branche}}`
|
|
|
|
|
|
|
|
- Créer une nouvelle branche en partant d'un commit donné et basculer dessus :
|
|
|
|
|
|
|
|
`git switch --create {{nom_de_branche}} {{commit}}`
|
|
|
|
|
|
|
|
- Basculer sur la branche précedante :
|
|
|
|
|
|
|
|
`git switch -`
|
|
|
|
|
|
|
|
- Basculer vers une branche et mettre à jour tous les sous-modules pour qu'ils correspondent :
|
|
|
|
|
|
|
|
`git switch --recurse-submodules {{nom_de_branche}}`
|
|
|
|
|
|
|
|
- Basculer vers une branche et fusionner automatiquement la branche actuelle et toutes les modifications non validées dedans :
|
|
|
|
|
|
|
|
`git switch --merge {{nom_de_branche}}`
|