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