mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 08:22:09 +02:00

* git-send-email: add it translation * git-shortlog: add it translation * git-show-branch: add it translation * git-show-ref: add it translation * git-show: add it translation * git-svn: add it translation * git-sizer: add it translation * git-stage: add it translation * git-status: add it translation * git-stash: add it translation * git-submodule: add it translation * git-subtree: add it translation * git-switch: add it translation * git-tag: add it translation * git-update-ref: add it translation * git-worktree: add it translation * Use snake case for tokens
20 lines
569 B
Markdown
20 lines
569 B
Markdown
# git worktree
|
|
|
|
> Gestisci gli alberi di lavoro collegati allo stesso repository.
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-worktree>.
|
|
|
|
- Crea una nuova cartella a partire da uno specifico ramo:
|
|
|
|
`git worktree add {{percorso/alla/cartella}} {{ramo}}`
|
|
|
|
- Crea una nuova cartella a partire da un nuovo ramo:
|
|
|
|
`git worktree add {{percorso/alla/cartella}} -b {{nuovo_ramo}}`
|
|
|
|
- Mostra tutte le cartelle di lavoro collegate al repository corrente:
|
|
|
|
`git worktree list`
|
|
|
|
- Cancella un albero di lavoro (dopo averne cancellato la cartella):
|
|
|
|
`git worktree prune`
|