git-worktree(1) =============== NAME ---- git-worktree - Manage multiple worktrees SYNOPSIS -------- [verse] 'git worktree prune' [-n] [-v] [--expire ] DESCRIPTION ----------- Manage multiple worktrees attached to the same repository. These are created by the command `git checkout --to`. A git repository can support multiple working trees, allowing you to check out more than one branch at a time. With `git checkout --to` a new working tree is associated with the repository. This new working tree is called a "linked working tree" as opposed to the "main working tree" prepared by "git init" or "git clone". A repository has one main working tree (if it's not a bare repository) and zero or more linked working trees. When you are done with a linked working tree you can simply delete it. The working tree's administrative files in the repository (see "DETAILS" below) will eventually be removed automatically (see `gc.pruneworktreesexpire` in linkgit::git-config[1]), or you can run `git worktree prune` in the main or any linked working tree to clean up any stale administrative files. If you move a linked working directory to another file system, or within a file system that does not support hard links, you need to run at least one git command inside the linked working directory (e.g. `git status`) in order to update its administrative files in the repository so that they do not get automatically pruned. If a linked working tree is stored on a portable device or network share which is not always mounted, you can prevent its administrative files from being pruned by creating a file named 'lock' alongside the other administrative files, optionally containing a plain text reason that pruning should be suppressed. See section "DETAILS" for more information. COMMANDS -------- prune:: Prune working tree information in $GIT_DIR/worktrees. OPTIONS ------- -n:: --dry-run:: With `prune`, do not remove anything; just report what it would remove. -v:: --verbose:: With `prune`, report all removals. --expire