1git-worktree(1) 2=============== 3 4NAME 5---- 6git-worktree - Manage multiple working trees 7 8 9SYNOPSIS 10-------- 11[verse] 12'git worktree add' [-f] [--detach] [--checkout] [--lock] [-b <new-branch>] <path> [<branch>] 13'git worktree list' [--porcelain] 14'git worktree lock' [--reason <string>] <worktree> 15'git worktree prune' [-n] [-v] [--expire <expire>] 16'git worktree unlock' <worktree> 17 18DESCRIPTION 19----------- 20 21Manage multiple working trees attached to the same repository. 22 23A git repository can support multiple working trees, allowing you to check 24out more than one branch at a time. With `git worktree add` a new working 25tree is associated with the repository. This new working tree is called a 26"linked working tree" as opposed to the "main working tree" prepared by "git 27init" or "git clone". A repository has one main working tree (if it's not a 28bare repository) and zero or more linked working trees. 29 30When you are done with a linked working tree you can simply delete it. 31The working tree's administrative files in the repository (see 32"DETAILS" below) will eventually be removed automatically (see 33`gc.worktreePruneExpire` in linkgit:git-config[1]), or you can run 34`git worktree prune` in the main or any linked working tree to 35clean up any stale administrative files. 36 37If you move a linked working tree, you need to manually update the 38administrative files so that they do not get pruned automatically. See 39section "DETAILS" for more information. 40 41If a linked working tree is stored on a portable device or network share 42which is not always mounted, you can prevent its administrative files from 43being pruned by issuing the `git worktree lock` command, optionally 44specifying `--reason` to explain why the working tree is locked. 45 46COMMANDS 47-------- 48add <path> [<branch>]:: 49 50Create `<path>` and checkout `<branch>` into it. The new working directory 51is linked to the current repository, sharing everything except working 52directory specific files such as HEAD, index, etc. `-` may also be 53specified as `<branch>`; it is synonymous with `@{-1}`. 54+ 55If `<branch>` is omitted and neither `-b` nor `-B` nor `--detach` used, 56then, as a convenience, a new branch based at HEAD is created automatically, 57as if `-b $(basename <path>)` was specified. 58 59list:: 60 61List details of each worktree. The main worktree is listed first, followed by 62each of the linked worktrees. The output details include if the worktree is 63bare, the revision currently checked out, and the branch currently checked out 64(or 'detached HEAD' if none). 65 66lock:: 67 68If a working tree is on a portable device or network share which 69is not always mounted, lock it to prevent its administrative 70files from being pruned automatically. This also prevents it from 71being moved or deleted. Optionally, specify a reason for the lock 72with `--reason`. 73 74prune:: 75 76Prune working tree information in $GIT_DIR/worktrees. 77 78unlock:: 79 80Unlock a working tree, allowing it to be pruned, moved or deleted. 81 82OPTIONS 83------- 84 85-f:: 86--force:: 87 By default, `add` refuses to create a new working tree when `<branch>` 88 is already checked out by another working tree. This option overrides 89 that safeguard. 90 91-b <new-branch>:: 92-B <new-branch>:: 93 With `add`, create a new branch named `<new-branch>` starting at 94 `<branch>`, and check out `<new-branch>` into the new working tree. 95 If `<branch>` is omitted, it defaults to HEAD. 96 By default, `-b` refuses to create a new branch if it already 97 exists. `-B` overrides this safeguard, resetting `<new-branch>` to 98 `<branch>`. 99 100--detach:: 101 With `add`, detach HEAD in the new working tree. See "DETACHED HEAD" 102 in linkgit:git-checkout[1]. 103 104--[no-]checkout:: 105 By default, `add` checks out `<branch>`, however, `--no-checkout` can 106 be used to suppress checkout in order to make customizations, 107 such as configuring sparse-checkout. See "Sparse checkout" 108 in linkgit:git-read-tree[1]. 109 110--lock:: 111 Keep the working tree locked after creation. This is the 112 equivalent of `git worktree lock` after `git worktree add`, 113 but without race condition. 114 115-n:: 116--dry-run:: 117 With `prune`, do not remove anything; just report what it would 118 remove. 119 120--porcelain:: 121 With `list`, output in an easy-to-parse format for scripts. 122 This format will remain stable across Git versions and regardless of user 123 configuration. See below for details. 124 125-v:: 126--verbose:: 127 With `prune`, report all removals. 128 129--expire <time>:: 130 With `prune`, only expire unused working trees older than <time>. 131 132--reason <string>:: 133 With `lock`, an explanation why the working tree is locked. 134 135<worktree>:: 136 Working trees can be identified by path, either relative or 137 absolute. 138+ 139If the last path components in the working tree's path is unique among 140working trees, it can be used to identify worktrees. For example if 141you only have two working trees, at "/abc/def/ghi" and "/abc/def/ggg", 142then "ghi" or "def/ghi" is enough to point to the former working tree. 143 144DETAILS 145------- 146Each linked working tree has a private sub-directory in the repository's 147$GIT_DIR/worktrees directory. The private sub-directory's name is usually 148the base name of the linked working tree's path, possibly appended with a 149number to make it unique. For example, when `$GIT_DIR=/path/main/.git` the 150command `git worktree add /path/other/test-next next` creates the linked 151working tree in `/path/other/test-next` and also creates a 152`$GIT_DIR/worktrees/test-next` directory (or `$GIT_DIR/worktrees/test-next1` 153if `test-next` is already taken). 154 155Within a linked working tree, $GIT_DIR is set to point to this private 156directory (e.g. `/path/main/.git/worktrees/test-next` in the example) and 157$GIT_COMMON_DIR is set to point back to the main working tree's $GIT_DIR 158(e.g. `/path/main/.git`). These settings are made in a `.git` file located at 159the top directory of the linked working tree. 160 161Path resolution via `git rev-parse --git-path` uses either 162$GIT_DIR or $GIT_COMMON_DIR depending on the path. For example, in the 163linked working tree `git rev-parse --git-path HEAD` returns 164`/path/main/.git/worktrees/test-next/HEAD` (not 165`/path/other/test-next/.git/HEAD` or `/path/main/.git/HEAD`) while `git 166rev-parse --git-path refs/heads/master` uses 167$GIT_COMMON_DIR and returns `/path/main/.git/refs/heads/master`, 168since refs are shared across all working trees. 169 170See linkgit:gitrepository-layout[5] for more information. The rule of 171thumb is do not make any assumption about whether a path belongs to 172$GIT_DIR or $GIT_COMMON_DIR when you need to directly access something 173inside $GIT_DIR. Use `git rev-parse --git-path` to get the final path. 174 175If you move a linked working tree, you need to update the 'gitdir' file 176in the entry's directory. For example, if a linked working tree is moved 177to `/newpath/test-next` and its `.git` file points to 178`/path/main/.git/worktrees/test-next`, then update 179`/path/main/.git/worktrees/test-next/gitdir` to reference `/newpath/test-next` 180instead. 181 182To prevent a $GIT_DIR/worktrees entry from being pruned (which 183can be useful in some situations, such as when the 184entry's working tree is stored on a portable device), use the 185`git worktree lock` command, which adds a file named 186'locked' to the entry's directory. The file contains the reason in 187plain text. For example, if a linked working tree's `.git` file points 188to `/path/main/.git/worktrees/test-next` then a file named 189`/path/main/.git/worktrees/test-next/locked` will prevent the 190`test-next` entry from being pruned. See 191linkgit:gitrepository-layout[5] for details. 192 193LIST OUTPUT FORMAT 194------------------ 195The worktree list command has two output formats. The default format shows the 196details on a single line with columns. For example: 197 198------------ 199S git worktree list 200/path/to/bare-source (bare) 201/path/to/linked-worktree abcd1234 [master] 202/path/to/other-linked-worktree 1234abc (detached HEAD) 203------------ 204 205Porcelain Format 206~~~~~~~~~~~~~~~~ 207The porcelain format has a line per attribute. Attributes are listed with a 208label and value separated by a single space. Boolean attributes (like 'bare' 209and 'detached') are listed as a label only, and are only present if and only 210if the value is true. An empty line indicates the end of a worktree. For 211example: 212 213------------ 214S git worktree list --porcelain 215worktree /path/to/bare-source 216bare 217 218worktree /path/to/linked-worktree 219HEAD abcd1234abcd1234abcd1234abcd1234abcd1234 220branch refs/heads/master 221 222worktree /path/to/other-linked-worktree 223HEAD 1234abc1234abc1234abc1234abc1234abc1234a 224detached 225 226------------ 227 228EXAMPLES 229-------- 230You are in the middle of a refactoring session and your boss comes in and 231demands that you fix something immediately. You might typically use 232linkgit:git-stash[1] to store your changes away temporarily, however, your 233working tree is in such a state of disarray (with new, moved, and removed 234files, and other bits and pieces strewn around) that you don't want to risk 235disturbing any of it. Instead, you create a temporary linked working tree to 236make the emergency fix, remove it when done, and then resume your earlier 237refactoring session. 238 239------------ 240$ git worktree add -b emergency-fix ../temp master 241$ pushd ../temp 242# ... hack hack hack ... 243$ git commit -a -m 'emergency fix for boss' 244$ popd 245$ rm -rf ../temp 246$ git worktree prune 247------------ 248 249BUGS 250---- 251Multiple checkout in general is still experimental, and the support 252for submodules is incomplete. It is NOT recommended to make multiple 253checkouts of a superproject. 254 255git-worktree could provide more automation for tasks currently 256performed manually, such as: 257 258- `remove` to remove a linked working tree and its administrative files (and 259 warn if the working tree is dirty) 260- `mv` to move or rename a working tree and update its administrative files 261 262GIT 263--- 264Part of the linkgit:git[1] suite