2020-11-03 07:49:29 +00:00
|
|
|
# git switch
|
|
|
|
|
2021-01-07 14:06:38 +00:00
|
|
|
> Passa ad altri rami. Richiede versioni di Git successive alla 2.23.
|
2020-11-03 07:49:29 +00:00
|
|
|
> Vedi anche `git checkout`.
|
2021-01-08 15:23:23 +00:00
|
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-switch>.
|
2020-11-03 07:49:29 +00:00
|
|
|
|
|
|
|
- Passa ad un altro ramo esistente:
|
|
|
|
|
|
|
|
`git switch {{nome_ramo}}`
|
|
|
|
|
|
|
|
- Crea un nuovo ramo e passa a quel ramo:
|
|
|
|
|
|
|
|
`git switch --create {{nome_ramo}}`
|
|
|
|
|
|
|
|
- Crea un nuovo ramo a partire da un commit esistente e passa a quel ramo:
|
|
|
|
|
|
|
|
`git switch --create {{nome_ramo}} {{commit}}`
|
|
|
|
|
|
|
|
- Torna al ramo precedente:
|
|
|
|
|
|
|
|
`git switch -`
|
|
|
|
|
|
|
|
- Passa ad un ramo ed aggiorna tutti i moduli secondari associati:
|
|
|
|
|
|
|
|
`git switch --recurse-submodules {{nome_ramo}}`
|
|
|
|
|
|
|
|
- Passa ad un ramo e uniscilo automaticamente al ramo corrente, include le modifiche non committate:
|
|
|
|
|
|
|
|
`git switch --merge {{nome_ramo}}`
|