2015-06-29 12:51:18 +00:00
|
|
|
git-worktree(1)
|
|
|
|
===============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2015-07-20 05:29:18 +00:00
|
|
|
git-worktree - Manage multiple working trees
|
2015-06-29 12:51:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
[verse]
|
2022-10-13 15:39:02 +00:00
|
|
|
'git worktree add' [-f] [--detach] [--checkout] [--lock [--reason <string>]]
|
2023-05-17 21:48:47 +00:00
|
|
|
[--orphan] [(-b | -B) <new-branch>] <path> [<commit-ish>]
|
2022-03-31 16:21:28 +00:00
|
|
|
'git worktree list' [-v | --porcelain [-z]]
|
2016-06-13 12:18:24 +00:00
|
|
|
'git worktree lock' [--reason <string>] <worktree>
|
2018-02-12 09:49:36 +00:00
|
|
|
'git worktree move' <worktree> <new-path>
|
2016-05-22 09:33:53 +00:00
|
|
|
'git worktree prune' [-n] [-v] [--expire <expire>]
|
2018-04-17 18:19:39 +00:00
|
|
|
'git worktree remove' [-f] <worktree>
|
2020-08-31 06:57:58 +00:00
|
|
|
'git worktree repair' [<path>...]
|
2016-06-13 12:18:25 +00:00
|
|
|
'git worktree unlock' <worktree>
|
2015-06-29 12:51:18 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
2015-07-20 05:29:18 +00:00
|
|
|
Manage multiple working trees attached to the same repository.
|
2015-06-29 12:51:18 +00:00
|
|
|
|
2015-07-06 17:30:40 +00:00
|
|
|
A git repository can support multiple working trees, allowing you to check
|
2015-07-16 22:09:43 +00:00
|
|
|
out more than one branch at a time. With `git worktree add` a new working
|
2022-02-23 14:29:13 +00:00
|
|
|
tree is associated with the repository, along with additional metadata
|
|
|
|
that differentiates that working tree from others in the same repository.
|
|
|
|
The working tree, along with this metadata, is called a "worktree".
|
|
|
|
|
|
|
|
This new worktree is called a "linked worktree" as opposed to the "main
|
|
|
|
worktree" prepared by linkgit:git-init[1] or linkgit:git-clone[1].
|
|
|
|
A repository has one main worktree (if it's not a bare repository) and
|
|
|
|
zero or more linked worktrees. When you are done with a linked worktree,
|
|
|
|
remove it with `git worktree remove`.
|
2015-07-06 17:30:40 +00:00
|
|
|
|
2020-09-07 00:02:22 +00:00
|
|
|
In its simplest form, `git worktree add <path>` automatically creates a
|
|
|
|
new branch whose name is the final component of `<path>`, which is
|
|
|
|
convenient if you plan to work on a new topic. For instance, `git
|
|
|
|
worktree add ../hotfix` creates new branch `hotfix` and checks it out at
|
2022-02-23 14:29:13 +00:00
|
|
|
path `../hotfix`. To instead work on an existing branch in a new worktree,
|
|
|
|
use `git worktree add <path> <branch>`. On the other hand, if you just
|
|
|
|
plan to make some experimental changes or do testing without disturbing
|
|
|
|
existing development, it is often convenient to create a 'throwaway'
|
|
|
|
worktree not associated with any branch. For instance,
|
|
|
|
`git worktree add -d <path>` creates a new worktree with a detached `HEAD`
|
|
|
|
at the same commit as the current branch.
|
2020-09-07 00:02:22 +00:00
|
|
|
|
2018-04-09 07:33:59 +00:00
|
|
|
If a working tree is deleted without using `git worktree remove`, then
|
|
|
|
its associated administrative files, which reside in the repository
|
|
|
|
(see "DETAILS" below), will eventually be removed automatically (see
|
2015-07-24 04:00:52 +00:00
|
|
|
`gc.worktreePruneExpire` in linkgit:git-config[1]), or you can run
|
2022-02-23 14:29:13 +00:00
|
|
|
`git worktree prune` in the main or any linked worktree to clean up any
|
|
|
|
stale administrative files.
|
2015-07-06 17:30:40 +00:00
|
|
|
|
2022-02-23 14:29:13 +00:00
|
|
|
If the working tree for a linked worktree is stored on a portable device
|
|
|
|
or network share which is not always mounted, you can prevent its
|
|
|
|
administrative files from being pruned by issuing the `git worktree lock`
|
|
|
|
command, optionally specifying `--reason` to explain why the worktree is
|
|
|
|
locked.
|
2015-07-06 17:30:40 +00:00
|
|
|
|
2015-06-29 12:51:18 +00:00
|
|
|
COMMANDS
|
|
|
|
--------
|
2017-11-26 19:43:52 +00:00
|
|
|
add <path> [<commit-ish>]::
|
2015-07-06 17:30:50 +00:00
|
|
|
|
2022-02-23 14:29:13 +00:00
|
|
|
Create a worktree at `<path>` and checkout `<commit-ish>` into it. The new worktree
|
|
|
|
is linked to the current repository, sharing everything except per-worktree
|
|
|
|
files such as `HEAD`, `index`, etc. As a convenience, `<commit-ish>` may
|
|
|
|
be a bare "`-`", which is synonymous with `@{-1}`.
|
2015-07-06 17:30:59 +00:00
|
|
|
+
|
2020-08-04 00:55:31 +00:00
|
|
|
If `<commit-ish>` is a branch name (call it `<branch>`) and is not found,
|
2017-11-26 19:43:54 +00:00
|
|
|
and neither `-b` nor `-B` nor `--detach` are used, but there does
|
|
|
|
exist a tracking branch in exactly one remote (call it `<remote>`)
|
2018-02-16 20:44:51 +00:00
|
|
|
with a matching name, treat as equivalent to:
|
2018-02-16 20:44:52 +00:00
|
|
|
+
|
2017-11-26 19:43:54 +00:00
|
|
|
------------
|
|
|
|
$ git worktree add --track -b <branch> <path> <remote>/<branch>
|
|
|
|
------------
|
|
|
|
+
|
checkout & worktree: introduce checkout.defaultRemote
Introduce a checkout.defaultRemote setting which can be used to
designate a remote to prefer (via checkout.defaultRemote=origin) when
running e.g. "git checkout master" to mean origin/master, even though
there's other remotes that have the "master" branch.
I want this because it's very handy to use this workflow to checkout a
repository and create a topic branch, then get back to a "master" as
retrieved from upstream:
(
cd /tmp &&
rm -rf tbdiff &&
git clone git@github.com:trast/tbdiff.git &&
cd tbdiff &&
git branch -m topic &&
git checkout master
)
That will output:
Branch 'master' set up to track remote branch 'master' from 'origin'.
Switched to a new branch 'master'
But as soon as a new remote is added (e.g. just to inspect something
from someone else) the DWIMery goes away:
(
cd /tmp &&
rm -rf tbdiff &&
git clone git@github.com:trast/tbdiff.git &&
cd tbdiff &&
git branch -m topic &&
git remote add avar git@github.com:avar/tbdiff.git &&
git fetch avar &&
git checkout master
)
Will output (without the advice output added earlier in this series):
error: pathspec 'master' did not match any file(s) known to git.
The new checkout.defaultRemote config allows me to say that whenever
that ambiguity comes up I'd like to prefer "origin", and it'll still
work as though the only remote I had was "origin".
Also adjust the advice.checkoutAmbiguousRemoteBranchName message to
mention this new config setting to the user, the full output on my
git.git is now (the last paragraph is new):
$ ./git --exec-path=$PWD checkout master
error: pathspec 'master' did not match any file(s) known to git.
hint: 'master' matched more than one remote tracking branch.
hint: We found 26 remotes with a reference that matched. So we fell back
hint: on trying to resolve the argument as a path, but failed there too!
hint:
hint: If you meant to check out a remote tracking branch on, e.g. 'origin',
hint: you can do so by fully qualifying the name with the --track option:
hint:
hint: git checkout --track origin/<name>
hint:
hint: If you'd like to always have checkouts of an ambiguous <name> prefer
hint: one remote, e.g. the 'origin' remote, consider setting
hint: checkout.defaultRemote=origin in your config.
I considered splitting this into checkout.defaultRemote and
worktree.defaultRemote, but it's probably less confusing to break our
own rules that anything shared between config should live in core.*
than have two config settings, and I couldn't come up with a short
name under core.* that made sense (core.defaultRemoteForCheckout?).
See also 70c9ac2f19 ("DWIM "git checkout frotz" to "git checkout -b
frotz origin/frotz"", 2009-10-18) which introduced this DWIM feature
to begin with, and 4e85333197 ("worktree: make add <path> <branch>
dwim", 2017-11-26) which added it to git-worktree.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2018-06-05 14:40:49 +00:00
|
|
|
If the branch exists in multiple remotes and one of them is named by
|
|
|
|
the `checkout.defaultRemote` configuration variable, we'll use that
|
|
|
|
one for the purposes of disambiguation, even if the `<branch>` isn't
|
|
|
|
unique across all remotes. Set it to
|
|
|
|
e.g. `checkout.defaultRemote=origin` to always checkout remote
|
|
|
|
branches from there if `<branch>` is ambiguous but exists on the
|
2020-08-04 00:55:31 +00:00
|
|
|
`origin` remote. See also `checkout.defaultRemote` in
|
checkout & worktree: introduce checkout.defaultRemote
Introduce a checkout.defaultRemote setting which can be used to
designate a remote to prefer (via checkout.defaultRemote=origin) when
running e.g. "git checkout master" to mean origin/master, even though
there's other remotes that have the "master" branch.
I want this because it's very handy to use this workflow to checkout a
repository and create a topic branch, then get back to a "master" as
retrieved from upstream:
(
cd /tmp &&
rm -rf tbdiff &&
git clone git@github.com:trast/tbdiff.git &&
cd tbdiff &&
git branch -m topic &&
git checkout master
)
That will output:
Branch 'master' set up to track remote branch 'master' from 'origin'.
Switched to a new branch 'master'
But as soon as a new remote is added (e.g. just to inspect something
from someone else) the DWIMery goes away:
(
cd /tmp &&
rm -rf tbdiff &&
git clone git@github.com:trast/tbdiff.git &&
cd tbdiff &&
git branch -m topic &&
git remote add avar git@github.com:avar/tbdiff.git &&
git fetch avar &&
git checkout master
)
Will output (without the advice output added earlier in this series):
error: pathspec 'master' did not match any file(s) known to git.
The new checkout.defaultRemote config allows me to say that whenever
that ambiguity comes up I'd like to prefer "origin", and it'll still
work as though the only remote I had was "origin".
Also adjust the advice.checkoutAmbiguousRemoteBranchName message to
mention this new config setting to the user, the full output on my
git.git is now (the last paragraph is new):
$ ./git --exec-path=$PWD checkout master
error: pathspec 'master' did not match any file(s) known to git.
hint: 'master' matched more than one remote tracking branch.
hint: We found 26 remotes with a reference that matched. So we fell back
hint: on trying to resolve the argument as a path, but failed there too!
hint:
hint: If you meant to check out a remote tracking branch on, e.g. 'origin',
hint: you can do so by fully qualifying the name with the --track option:
hint:
hint: git checkout --track origin/<name>
hint:
hint: If you'd like to always have checkouts of an ambiguous <name> prefer
hint: one remote, e.g. the 'origin' remote, consider setting
hint: checkout.defaultRemote=origin in your config.
I considered splitting this into checkout.defaultRemote and
worktree.defaultRemote, but it's probably less confusing to break our
own rules that anything shared between config should live in core.*
than have two config settings, and I couldn't come up with a short
name under core.* that made sense (core.defaultRemoteForCheckout?).
See also 70c9ac2f19 ("DWIM "git checkout frotz" to "git checkout -b
frotz origin/frotz"", 2009-10-18) which introduced this DWIM feature
to begin with, and 4e85333197 ("worktree: make add <path> <branch>
dwim", 2017-11-26) which added it to git-worktree.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2018-06-05 14:40:49 +00:00
|
|
|
linkgit:git-config[1].
|
|
|
|
+
|
2017-11-26 19:43:52 +00:00
|
|
|
If `<commit-ish>` is omitted and neither `-b` nor `-B` nor `--detach` used,
|
2022-02-23 14:29:14 +00:00
|
|
|
then, as a convenience, the new worktree is associated with a branch (call
|
|
|
|
it `<branch>`) named after `$(basename <path>)`. If `<branch>` doesn't
|
|
|
|
exist, a new branch based on `HEAD` is automatically created as if
|
|
|
|
`-b <branch>` was given. If `<branch>` does exist, it will be checked out
|
|
|
|
in the new worktree, if it's not checked out anywhere else, otherwise the
|
|
|
|
command will refuse to create the worktree (unless `--force` is used).
|
2023-05-17 21:48:58 +00:00
|
|
|
+
|
|
|
|
If `<commit-ish>` is omitted, neither `--detach`, or `--orphan` is
|
|
|
|
used, and there are no valid local branches (or remote branches if
|
|
|
|
`--guess-remote` is specified) then, as a convenience, the new worktree is
|
2023-11-24 03:09:18 +00:00
|
|
|
associated with a new unborn branch named `<branch>` (after
|
2023-05-17 21:48:58 +00:00
|
|
|
`$(basename <path>)` if neither `-b` or `-B` is used) as if `--orphan` was
|
|
|
|
passed to the command. In the event the repository has a remote and
|
|
|
|
`--guess-remote` is used, but no remote or local branches exist, then the
|
|
|
|
command fails with a warning reminding the user to fetch from their remote
|
|
|
|
first (or override by using `-f/--force`).
|
2015-07-06 17:30:50 +00:00
|
|
|
|
2015-10-08 17:01:05 +00:00
|
|
|
list::
|
|
|
|
|
2022-02-23 14:29:14 +00:00
|
|
|
List details of each worktree. The main worktree is listed first,
|
|
|
|
followed by each of the linked worktrees. The output details include
|
|
|
|
whether the worktree is bare, the revision currently checked out, the
|
2021-01-27 08:03:09 +00:00
|
|
|
branch currently checked out (or "detached HEAD" if none), "locked" if
|
2022-02-23 14:29:14 +00:00
|
|
|
the worktree is locked, "prunable" if the worktree can be pruned by the
|
|
|
|
`prune` command.
|
2015-10-08 17:01:05 +00:00
|
|
|
|
2016-06-13 12:18:24 +00:00
|
|
|
lock::
|
|
|
|
|
2022-02-23 14:29:14 +00:00
|
|
|
If a worktree is on a portable device or network share which is not always
|
|
|
|
mounted, lock it to prevent its administrative files from being pruned
|
|
|
|
automatically. This also prevents it from being moved or deleted.
|
|
|
|
Optionally, specify a reason for the lock with `--reason`.
|
2016-06-13 12:18:24 +00:00
|
|
|
|
2018-02-12 09:49:36 +00:00
|
|
|
move::
|
|
|
|
|
2022-02-23 14:29:14 +00:00
|
|
|
Move a worktree to a new location. Note that the main worktree or linked
|
|
|
|
worktrees containing submodules cannot be moved with this command. (The
|
|
|
|
`git worktree repair` command, however, can reestablish the connection
|
|
|
|
with linked worktrees if you move the main worktree manually.)
|
2018-02-12 09:49:36 +00:00
|
|
|
|
2016-05-22 09:33:53 +00:00
|
|
|
prune::
|
|
|
|
|
2022-02-23 14:29:14 +00:00
|
|
|
Prune worktree information in `$GIT_DIR/worktrees`.
|
2016-05-22 09:33:53 +00:00
|
|
|
|
2018-02-12 09:49:39 +00:00
|
|
|
remove::
|
|
|
|
|
2022-02-23 14:29:14 +00:00
|
|
|
Remove a worktree. Only clean worktrees (no untracked files and no
|
|
|
|
modification in tracked files) can be removed. Unclean worktrees or ones
|
|
|
|
with submodules can be removed with `--force`. The main worktree cannot be
|
|
|
|
removed.
|
2018-02-12 09:49:39 +00:00
|
|
|
|
2020-08-31 06:57:58 +00:00
|
|
|
repair [<path>...]::
|
2020-08-27 08:21:25 +00:00
|
|
|
|
2022-02-23 14:29:14 +00:00
|
|
|
Repair worktree administrative files, if possible, if they have become
|
|
|
|
corrupted or outdated due to external factors.
|
2020-08-31 06:57:57 +00:00
|
|
|
+
|
2022-02-23 14:29:14 +00:00
|
|
|
For instance, if the main worktree (or bare repository) is moved, linked
|
|
|
|
worktrees will be unable to locate it. Running `repair` in the main
|
|
|
|
worktree will reestablish the connection from linked worktrees back to the
|
|
|
|
main worktree.
|
2020-08-31 06:57:58 +00:00
|
|
|
+
|
2022-02-23 14:29:14 +00:00
|
|
|
Similarly, if the working tree for a linked worktree is moved without
|
|
|
|
using `git worktree move`, the main worktree (or bare repository) will be
|
|
|
|
unable to locate it. Running `repair` within the recently-moved worktree
|
|
|
|
will reestablish the connection. If multiple linked worktrees are moved,
|
|
|
|
running `repair` from any worktree with each tree's new `<path>` as an
|
|
|
|
argument, will reestablish the connection to all the specified paths.
|
worktree: teach `repair` to fix multi-directional breakage
`git worktree repair` knows how to repair the two-way links between the
repository and a worktree as long as a link in one or the other
direction is sound. For instance, if a linked worktree is moved (without
using `git worktree move`), repair is possible because the worktree
still knows the location of the repository even though the repository no
longer knows where the worktree is. Similarly, if the repository is
moved, repair is possible since the repository still knows the locations
of the worktrees even though the worktrees no longer know where the
repository is.
However, if both the repository and the worktrees are moved, then links
are severed in both directions, and no repair is possible. This is the
case even when the new worktree locations are specified as arguments to
`git worktree repair`. The reason for this limitation is twofold. First,
when `repair` consults the worktree's gitfile (/path/to/worktree/.git)
to determine the corresponding <repo>/worktrees/<id>/gitdir file to fix,
<repo> is the old path to the repository, thus it is unable to fix the
`gitdir` file at its new location since it doesn't know where it is.
Second, when `repair` consults <repo>/worktrees/<id>/gitdir to find the
location of the worktree's gitfile (/path/to/worktree/.git), the path
recorded in `gitdir` is the old location of the worktree's gitfile, thus
it is unable to repair the gitfile since it doesn't know where it is.
Fix these shortcomings by teaching `repair` to attempt to infer the new
location of the <repo>/worktrees/<id>/gitdir file when the location
recorded in the worktree's gitfile has become stale but the file is
otherwise well-formed. The inference is intentionally simple-minded.
For each worktree path specified as an argument, `git worktree repair`
manually reads the ".git" gitfile at that location and, if it is
well-formed, extracts the <id>. It then searches for a corresponding
<id> in <repo>/worktrees/ and, if found, concludes that there is a
reasonable match and updates <repo>/worktrees/<id>/gitdir to point at
the specified worktree path. In order for <repo> to be known, `git
worktree repair` must be run in the main worktree or bare repository.
`git worktree repair` first attempts to repair each incoming
/path/to/worktree/.git gitfile to point at the repository, and then
attempts to repair outgoing <repo>/worktrees/<id>/gitdir files to point
at the worktrees. This sequence was chosen arbitrarily when originally
implemented since the order of fixes is immaterial as long as one side
of the two-way link between the repository and a worktree is sound.
However, for this new repair technique to work, the order must be
reversed. This is because the new inference mechanism, when it is
successful, allows the outgoing <repo>/worktrees/<id>/gitdir file to be
repaired, thus fixing one side of the two-way link. Once that side is
fixed, the other side can be fixed by the existing repair mechanism,
hence the order of repairs is now significant.
Two safeguards are employed to avoid hijacking a worktree from a
different repository if the user accidentally specifies a foreign
worktree as an argument. The first, as described above, is that it
requires an <id> match between the repository and the worktree. That
itself is not foolproof for preventing hijack, so the second safeguard
is that the inference will only kick in if the worktree's
/path/to/worktree/.git gitfile does not point at a repository.
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-12-21 08:16:01 +00:00
|
|
|
+
|
2022-02-23 14:29:14 +00:00
|
|
|
If both the main worktree and linked worktrees have been moved manually,
|
|
|
|
then running `repair` in the main worktree and specifying the new `<path>`
|
|
|
|
of each linked worktree will reestablish all connections in both
|
|
|
|
directions.
|
2020-08-27 08:21:25 +00:00
|
|
|
|
2016-06-13 12:18:25 +00:00
|
|
|
unlock::
|
|
|
|
|
2022-02-23 14:29:14 +00:00
|
|
|
Unlock a worktree, allowing it to be pruned, moved or deleted.
|
2016-06-13 12:18:25 +00:00
|
|
|
|
2015-06-29 12:51:18 +00:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
2015-07-06 17:30:51 +00:00
|
|
|
-f::
|
|
|
|
--force::
|
2022-02-23 14:29:15 +00:00
|
|
|
By default, `add` refuses to create a new worktree when
|
2018-02-12 09:49:39 +00:00
|
|
|
`<commit-ish>` is a branch name and is already checked out by
|
2022-02-23 14:29:15 +00:00
|
|
|
another worktree, or if `<path>` is already assigned to some
|
|
|
|
worktree but is missing (for instance, if `<path>` was deleted
|
2018-08-28 21:20:23 +00:00
|
|
|
manually). This option overrides these safeguards. To add a missing but
|
2022-02-23 14:29:15 +00:00
|
|
|
locked worktree path, specify `--force` twice.
|
2018-08-28 21:20:23 +00:00
|
|
|
+
|
2022-02-23 14:29:15 +00:00
|
|
|
`move` refuses to move a locked worktree unless `--force` is specified
|
|
|
|
twice. If the destination is already assigned to some other worktree but is
|
2020-06-10 06:30:49 +00:00
|
|
|
missing (for instance, if `<new-path>` was deleted manually), then `--force`
|
2020-08-04 00:55:31 +00:00
|
|
|
allows the move to proceed; use `--force` twice if the destination is locked.
|
2018-08-28 21:20:24 +00:00
|
|
|
+
|
2022-02-23 14:29:15 +00:00
|
|
|
`remove` refuses to remove an unclean worktree unless `--force` is used.
|
|
|
|
To remove a locked worktree, specify `--force` twice.
|
2015-07-06 17:30:51 +00:00
|
|
|
|
2015-07-06 17:30:53 +00:00
|
|
|
-b <new-branch>::
|
|
|
|
-B <new-branch>::
|
|
|
|
With `add`, create a new branch named `<new-branch>` starting at
|
2022-02-23 14:29:15 +00:00
|
|
|
`<commit-ish>`, and check out `<new-branch>` into the new worktree.
|
2020-08-04 00:55:31 +00:00
|
|
|
If `<commit-ish>` is omitted, it defaults to `HEAD`.
|
2015-07-06 17:30:53 +00:00
|
|
|
By default, `-b` refuses to create a new branch if it already
|
|
|
|
exists. `-B` overrides this safeguard, resetting `<new-branch>` to
|
2017-11-26 19:43:52 +00:00
|
|
|
`<commit-ish>`.
|
2015-07-06 17:30:53 +00:00
|
|
|
|
2020-09-07 00:02:21 +00:00
|
|
|
-d::
|
2015-07-06 17:30:52 +00:00
|
|
|
--detach::
|
2022-02-23 14:29:15 +00:00
|
|
|
With `add`, detach `HEAD` in the new worktree. See "DETACHED HEAD"
|
2015-07-20 05:29:18 +00:00
|
|
|
in linkgit:git-checkout[1].
|
2015-07-06 17:30:52 +00:00
|
|
|
|
2016-03-29 10:11:01 +00:00
|
|
|
--[no-]checkout::
|
2017-11-26 19:43:52 +00:00
|
|
|
By default, `add` checks out `<commit-ish>`, however, `--no-checkout` can
|
2016-03-29 10:11:01 +00:00
|
|
|
be used to suppress checkout in order to make customizations,
|
|
|
|
such as configuring sparse-checkout. See "Sparse checkout"
|
|
|
|
in linkgit:git-read-tree[1].
|
|
|
|
|
2017-11-29 20:04:50 +00:00
|
|
|
--[no-]guess-remote::
|
|
|
|
With `worktree add <path>`, without `<commit-ish>`, instead
|
2020-08-04 00:55:31 +00:00
|
|
|
of creating a new branch from `HEAD`, if there exists a tracking
|
2018-01-11 18:18:21 +00:00
|
|
|
branch in exactly one remote matching the basename of `<path>`,
|
2017-11-29 20:04:50 +00:00
|
|
|
base the new branch on the remote-tracking branch, and mark
|
|
|
|
the remote-tracking branch as "upstream" from the new branch.
|
2017-11-29 20:04:51 +00:00
|
|
|
+
|
|
|
|
This can also be set up as the default behaviour by using the
|
|
|
|
`worktree.guessRemote` config option.
|
2017-11-29 20:04:50 +00:00
|
|
|
|
2017-11-26 19:43:53 +00:00
|
|
|
--[no-]track::
|
|
|
|
When creating a new branch, if `<commit-ish>` is a branch,
|
|
|
|
mark it as "upstream" from the new branch. This is the
|
|
|
|
default if `<commit-ish>` is a remote-tracking branch. See
|
2020-08-04 00:55:31 +00:00
|
|
|
`--track` in linkgit:git-branch[1] for details.
|
2017-11-26 19:43:53 +00:00
|
|
|
|
2017-04-12 13:58:05 +00:00
|
|
|
--lock::
|
2022-02-23 14:29:15 +00:00
|
|
|
Keep the worktree locked after creation. This is the
|
2017-04-12 13:58:05 +00:00
|
|
|
equivalent of `git worktree lock` after `git worktree add`,
|
2020-08-04 00:55:33 +00:00
|
|
|
but without a race condition.
|
2017-04-12 13:58:05 +00:00
|
|
|
|
2015-06-29 12:51:18 +00:00
|
|
|
-n::
|
|
|
|
--dry-run::
|
2015-07-06 17:30:39 +00:00
|
|
|
With `prune`, do not remove anything; just report what it would
|
2015-06-29 12:51:18 +00:00
|
|
|
remove.
|
|
|
|
|
2023-05-17 21:48:47 +00:00
|
|
|
--orphan::
|
|
|
|
With `add`, make the new worktree and index empty, associating
|
2023-11-24 03:09:18 +00:00
|
|
|
the worktree with a new unborn branch named `<new-branch>`.
|
2023-05-17 21:48:47 +00:00
|
|
|
|
2015-10-08 17:01:05 +00:00
|
|
|
--porcelain::
|
|
|
|
With `list`, output in an easy-to-parse format for scripts.
|
|
|
|
This format will remain stable across Git versions and regardless of user
|
2022-03-31 16:21:28 +00:00
|
|
|
configuration. It is recommended to combine this with `-z`.
|
|
|
|
See below for details.
|
|
|
|
|
|
|
|
-z::
|
|
|
|
Terminate each line with a NUL rather than a newline when
|
|
|
|
`--porcelain` is specified with `list`. This makes it possible
|
|
|
|
to parse the output when a worktree path contains a newline
|
|
|
|
character.
|
2015-10-08 17:01:05 +00:00
|
|
|
|
2018-08-15 20:56:30 +00:00
|
|
|
-q::
|
|
|
|
--quiet::
|
2020-08-04 00:55:31 +00:00
|
|
|
With `add`, suppress feedback messages.
|
2018-08-15 20:56:30 +00:00
|
|
|
|
2015-06-29 12:51:18 +00:00
|
|
|
-v::
|
|
|
|
--verbose::
|
2015-07-06 17:30:39 +00:00
|
|
|
With `prune`, report all removals.
|
2021-01-27 08:03:10 +00:00
|
|
|
+
|
|
|
|
With `list`, output additional information about worktrees (see below).
|
2015-06-29 12:51:18 +00:00
|
|
|
|
|
|
|
--expire <time>::
|
2022-02-23 14:29:15 +00:00
|
|
|
With `prune`, only expire unused worktrees older than `<time>`.
|
2021-01-27 08:03:09 +00:00
|
|
|
+
|
2022-02-23 14:29:15 +00:00
|
|
|
With `list`, annotate missing worktrees as prunable if they are older than
|
|
|
|
`<time>`.
|
2015-06-29 12:51:18 +00:00
|
|
|
|
2016-06-13 12:18:24 +00:00
|
|
|
--reason <string>::
|
2022-02-23 14:29:15 +00:00
|
|
|
With `lock` or with `add --lock`, an explanation why the worktree
|
|
|
|
is locked.
|
2016-06-13 12:18:24 +00:00
|
|
|
|
|
|
|
<worktree>::
|
2022-02-23 14:29:15 +00:00
|
|
|
Worktrees can be identified by path, either relative or absolute.
|
2016-06-13 12:18:26 +00:00
|
|
|
+
|
2022-02-23 14:29:15 +00:00
|
|
|
If the last path components in the worktree's path is unique among
|
|
|
|
worktrees, it can be used to identify a worktree. For example if you only
|
|
|
|
have two worktrees, at `/abc/def/ghi` and `/abc/def/ggg`, then `ghi` or
|
|
|
|
`def/ghi` is enough to point to the former worktree.
|
2016-06-13 12:18:24 +00:00
|
|
|
|
2018-09-29 19:10:23 +00:00
|
|
|
REFS
|
|
|
|
----
|
2022-02-23 14:29:16 +00:00
|
|
|
When using multiple worktrees, some refs are shared between all worktrees,
|
|
|
|
but others are specific to an individual worktree. One example is `HEAD`,
|
|
|
|
which is different for each worktree. This section is about the sharing
|
|
|
|
rules and how to access refs of one worktree from another.
|
|
|
|
|
|
|
|
In general, all pseudo refs are per-worktree and all refs starting with
|
|
|
|
`refs/` are shared. Pseudo refs are ones like `HEAD` which are directly
|
|
|
|
under `$GIT_DIR` instead of inside `$GIT_DIR/refs`. There are exceptions,
|
2023-10-10 11:01:26 +00:00
|
|
|
however: refs inside `refs/bisect`, `refs/worktree` and `refs/rewritten` are
|
|
|
|
not shared.
|
2022-02-23 14:29:16 +00:00
|
|
|
|
|
|
|
Refs that are per-worktree can still be accessed from another worktree via
|
|
|
|
two special paths, `main-worktree` and `worktrees`. The former gives
|
|
|
|
access to per-worktree refs of the main worktree, while the latter to all
|
|
|
|
linked worktrees.
|
2018-10-21 08:08:54 +00:00
|
|
|
|
2020-08-04 00:55:31 +00:00
|
|
|
For example, `main-worktree/HEAD` or `main-worktree/refs/bisect/good`
|
2022-02-23 14:29:16 +00:00
|
|
|
resolve to the same value as the main worktree's `HEAD` and
|
2020-08-04 00:55:31 +00:00
|
|
|
`refs/bisect/good` respectively. Similarly, `worktrees/foo/HEAD` or
|
|
|
|
`worktrees/bar/refs/bisect/bad` are the same as
|
|
|
|
`$GIT_COMMON_DIR/worktrees/foo/HEAD` and
|
|
|
|
`$GIT_COMMON_DIR/worktrees/bar/refs/bisect/bad`.
|
2018-10-21 08:08:54 +00:00
|
|
|
|
2020-08-04 00:55:31 +00:00
|
|
|
To access refs, it's best not to look inside `$GIT_DIR` directly. Instead
|
2018-11-03 05:14:18 +00:00
|
|
|
use commands such as linkgit:git-rev-parse[1] or linkgit:git-update-ref[1]
|
2018-09-29 19:10:23 +00:00
|
|
|
which will handle refs correctly.
|
|
|
|
|
2018-10-21 14:02:28 +00:00
|
|
|
CONFIGURATION FILE
|
|
|
|
------------------
|
2022-02-23 14:29:17 +00:00
|
|
|
By default, the repository `config` file is shared across all worktrees.
|
|
|
|
If the config variables `core.bare` or `core.worktree` are present in the
|
|
|
|
common config file and `extensions.worktreeConfig` is disabled, then they
|
|
|
|
will be applied to the main worktree only.
|
2018-10-21 14:02:28 +00:00
|
|
|
|
2022-02-23 14:29:17 +00:00
|
|
|
In order to have worktree-specific configuration, you can turn on the
|
|
|
|
`worktreeConfig` extension, e.g.:
|
2018-10-21 14:02:28 +00:00
|
|
|
|
|
|
|
------------
|
|
|
|
$ git config extensions.worktreeConfig true
|
|
|
|
------------
|
|
|
|
|
|
|
|
In this mode, specific configuration stays in the path pointed by `git
|
|
|
|
rev-parse --git-path config.worktree`. You can add or update
|
|
|
|
configuration in this file with `git config --worktree`. Older Git
|
|
|
|
versions will refuse to access repositories with this extension.
|
|
|
|
|
|
|
|
Note that in this file, the exception for `core.bare` and `core.worktree`
|
2020-08-04 00:55:33 +00:00
|
|
|
is gone. If they exist in `$GIT_DIR/config`, you must move
|
2022-02-23 14:29:17 +00:00
|
|
|
them to the `config.worktree` of the main worktree. You may also take this
|
|
|
|
opportunity to review and move other configuration that you do not want to
|
|
|
|
share to all worktrees:
|
2018-10-21 14:02:28 +00:00
|
|
|
|
2022-02-07 21:32:58 +00:00
|
|
|
- `core.worktree` should never be shared.
|
|
|
|
|
|
|
|
- `core.bare` should not be shared if the value is `core.bare=true`.
|
2018-10-21 14:02:28 +00:00
|
|
|
|
2022-02-23 14:29:17 +00:00
|
|
|
- `core.sparseCheckout` should not be shared, unless you are sure you
|
|
|
|
always use sparse checkout for all worktrees.
|
2018-10-21 14:02:28 +00:00
|
|
|
|
2022-02-07 21:32:58 +00:00
|
|
|
See the documentation of `extensions.worktreeConfig` in
|
|
|
|
linkgit:git-config[1] for more details.
|
|
|
|
|
2015-07-06 17:30:42 +00:00
|
|
|
DETAILS
|
|
|
|
-------
|
2022-02-23 14:29:18 +00:00
|
|
|
Each linked worktree has a private sub-directory in the repository's
|
2020-08-04 00:55:31 +00:00
|
|
|
`$GIT_DIR/worktrees` directory. The private sub-directory's name is usually
|
2022-02-23 14:29:18 +00:00
|
|
|
the base name of the linked worktree's path, possibly appended with a
|
2015-07-06 17:30:42 +00:00
|
|
|
number to make it unique. For example, when `$GIT_DIR=/path/main/.git` the
|
2015-07-16 22:09:43 +00:00
|
|
|
command `git worktree add /path/other/test-next next` creates the linked
|
2022-02-23 14:29:18 +00:00
|
|
|
worktree in `/path/other/test-next` and also creates a
|
2015-07-06 17:30:42 +00:00
|
|
|
`$GIT_DIR/worktrees/test-next` directory (or `$GIT_DIR/worktrees/test-next1`
|
|
|
|
if `test-next` is already taken).
|
|
|
|
|
2022-02-23 14:29:18 +00:00
|
|
|
Within a linked worktree, `$GIT_DIR` is set to point to this private
|
2015-07-06 17:30:42 +00:00
|
|
|
directory (e.g. `/path/main/.git/worktrees/test-next` in the example) and
|
2022-02-23 14:29:18 +00:00
|
|
|
`$GIT_COMMON_DIR` is set to point back to the main worktree's `$GIT_DIR`
|
2015-07-06 17:30:42 +00:00
|
|
|
(e.g. `/path/main/.git`). These settings are made in a `.git` file located at
|
2022-02-23 14:29:18 +00:00
|
|
|
the top directory of the linked worktree.
|
2015-07-06 17:30:42 +00:00
|
|
|
|
|
|
|
Path resolution via `git rev-parse --git-path` uses either
|
2020-08-04 00:55:31 +00:00
|
|
|
`$GIT_DIR` or `$GIT_COMMON_DIR` depending on the path. For example, in the
|
2022-02-23 14:29:18 +00:00
|
|
|
linked worktree `git rev-parse --git-path HEAD` returns
|
2015-07-06 17:30:42 +00:00
|
|
|
`/path/main/.git/worktrees/test-next/HEAD` (not
|
|
|
|
`/path/other/test-next/.git/HEAD` or `/path/main/.git/HEAD`) while `git
|
|
|
|
rev-parse --git-path refs/heads/master` uses
|
2020-08-04 00:55:31 +00:00
|
|
|
`$GIT_COMMON_DIR` and returns `/path/main/.git/refs/heads/master`,
|
2023-10-10 11:01:26 +00:00
|
|
|
since refs are shared across all worktrees, except `refs/bisect`,
|
|
|
|
`refs/worktree` and `refs/rewritten`.
|
2015-07-06 17:30:42 +00:00
|
|
|
|
|
|
|
See linkgit:gitrepository-layout[5] for more information. The rule of
|
|
|
|
thumb is do not make any assumption about whether a path belongs to
|
2020-08-04 00:55:31 +00:00
|
|
|
`$GIT_DIR` or `$GIT_COMMON_DIR` when you need to directly access something
|
|
|
|
inside `$GIT_DIR`. Use `git rev-parse --git-path` to get the final path.
|
2015-07-06 17:30:42 +00:00
|
|
|
|
2022-02-23 14:29:18 +00:00
|
|
|
If you manually move a linked worktree, you need to update the `gitdir` file
|
|
|
|
in the entry's directory. For example, if a linked worktree is moved
|
2016-01-22 08:35:49 +00:00
|
|
|
to `/newpath/test-next` and its `.git` file points to
|
|
|
|
`/path/main/.git/worktrees/test-next`, then update
|
|
|
|
`/path/main/.git/worktrees/test-next/gitdir` to reference `/newpath/test-next`
|
2020-08-31 06:57:58 +00:00
|
|
|
instead. Better yet, run `git worktree repair` to reestablish the connection
|
|
|
|
automatically.
|
2016-01-22 08:35:49 +00:00
|
|
|
|
2020-08-04 00:55:31 +00:00
|
|
|
To prevent a `$GIT_DIR/worktrees` entry from being pruned (which
|
2015-07-06 17:30:43 +00:00
|
|
|
can be useful in some situations, such as when the
|
2022-02-23 14:29:18 +00:00
|
|
|
entry's worktree is stored on a portable device), use the
|
2016-06-13 12:18:24 +00:00
|
|
|
`git worktree lock` command, which adds a file named
|
2020-08-04 00:55:31 +00:00
|
|
|
`locked` to the entry's directory. The file contains the reason in
|
2022-02-23 14:29:18 +00:00
|
|
|
plain text. For example, if a linked worktree's `.git` file points
|
2015-07-06 17:30:43 +00:00
|
|
|
to `/path/main/.git/worktrees/test-next` then a file named
|
|
|
|
`/path/main/.git/worktrees/test-next/locked` will prevent the
|
|
|
|
`test-next` entry from being pruned. See
|
|
|
|
linkgit:gitrepository-layout[5] for details.
|
|
|
|
|
2020-08-04 00:55:31 +00:00
|
|
|
When `extensions.worktreeConfig` is enabled, the config file
|
2018-10-21 14:02:28 +00:00
|
|
|
`.git/worktrees/<id>/config.worktree` is read after `.git/config` is.
|
2015-07-06 17:30:43 +00:00
|
|
|
|
2015-10-08 17:01:05 +00:00
|
|
|
LIST OUTPUT FORMAT
|
|
|
|
------------------
|
2020-08-04 00:55:31 +00:00
|
|
|
The `worktree list` command has two output formats. The default format shows the
|
2015-10-08 17:01:05 +00:00
|
|
|
details on a single line with columns. For example:
|
|
|
|
|
|
|
|
------------
|
2018-04-09 07:34:00 +00:00
|
|
|
$ git worktree list
|
2015-10-08 17:01:05 +00:00
|
|
|
/path/to/bare-source (bare)
|
|
|
|
/path/to/linked-worktree abcd1234 [master]
|
|
|
|
/path/to/other-linked-worktree 1234abc (detached HEAD)
|
|
|
|
------------
|
|
|
|
|
2022-02-23 14:29:19 +00:00
|
|
|
The command also shows annotations for each worktree, according to its state.
|
2021-01-27 08:03:09 +00:00
|
|
|
These annotations are:
|
|
|
|
|
2022-02-23 14:29:19 +00:00
|
|
|
* `locked`, if the worktree is locked.
|
|
|
|
* `prunable`, if the worktree can be pruned via `git worktree prune`.
|
2021-01-27 08:03:09 +00:00
|
|
|
|
|
|
|
------------
|
|
|
|
$ git worktree list
|
|
|
|
/path/to/linked-worktree abcd1234 [master]
|
2021-06-25 19:38:51 +00:00
|
|
|
/path/to/locked-worktree acbd5678 (brancha) locked
|
2021-01-27 08:03:09 +00:00
|
|
|
/path/to/prunable-worktree 5678abc (detached HEAD) prunable
|
|
|
|
------------
|
|
|
|
|
2021-01-27 08:03:10 +00:00
|
|
|
For these annotations, a reason might also be available and this can be
|
|
|
|
seen using the verbose mode. The annotation is then moved to the next line
|
|
|
|
indented followed by the additional information.
|
|
|
|
|
|
|
|
------------
|
|
|
|
$ git worktree list --verbose
|
|
|
|
/path/to/linked-worktree abcd1234 [master]
|
|
|
|
/path/to/locked-worktree-no-reason abcd5678 (detached HEAD) locked
|
|
|
|
/path/to/locked-worktree-with-reason 1234abcd (brancha)
|
2022-02-23 14:29:19 +00:00
|
|
|
locked: worktree path is mounted on a portable device
|
2021-01-27 08:03:10 +00:00
|
|
|
/path/to/prunable-worktree 5678abc1 (detached HEAD)
|
|
|
|
prunable: gitdir file points to non-existent location
|
|
|
|
------------
|
|
|
|
|
|
|
|
Note that the annotation is moved to the next line if the additional
|
|
|
|
information is available, otherwise it stays on the same line as the
|
2022-02-23 14:29:19 +00:00
|
|
|
worktree itself.
|
2021-01-27 08:03:10 +00:00
|
|
|
|
2015-10-08 17:01:05 +00:00
|
|
|
Porcelain Format
|
|
|
|
~~~~~~~~~~~~~~~~
|
2022-03-31 16:21:28 +00:00
|
|
|
The porcelain format has a line per attribute. If `-z` is given then the lines
|
|
|
|
are terminated with NUL rather than a newline. Attributes are listed with a
|
2020-08-04 00:55:31 +00:00
|
|
|
label and value separated by a single space. Boolean attributes (like `bare`
|
2020-08-04 00:55:33 +00:00
|
|
|
and `detached`) are listed as a label only, and are present only
|
2021-01-27 08:03:08 +00:00
|
|
|
if the value is true. Some attributes (like `locked`) can be listed as a label
|
|
|
|
only or with a value depending upon whether a reason is available. The first
|
2022-02-23 14:29:19 +00:00
|
|
|
attribute of a worktree is always `worktree`, an empty line indicates the
|
2021-01-27 08:03:08 +00:00
|
|
|
end of the record. For example:
|
2015-10-08 17:01:05 +00:00
|
|
|
|
|
|
|
------------
|
2018-04-09 07:34:00 +00:00
|
|
|
$ git worktree list --porcelain
|
2015-10-08 17:01:05 +00:00
|
|
|
worktree /path/to/bare-source
|
|
|
|
bare
|
|
|
|
|
|
|
|
worktree /path/to/linked-worktree
|
|
|
|
HEAD abcd1234abcd1234abcd1234abcd1234abcd1234
|
|
|
|
branch refs/heads/master
|
|
|
|
|
|
|
|
worktree /path/to/other-linked-worktree
|
|
|
|
HEAD 1234abc1234abc1234abc1234abc1234abc1234a
|
|
|
|
detached
|
|
|
|
|
2021-01-27 08:03:08 +00:00
|
|
|
worktree /path/to/linked-worktree-locked-no-reason
|
|
|
|
HEAD 5678abc5678abc5678abc5678abc5678abc5678c
|
|
|
|
branch refs/heads/locked-no-reason
|
|
|
|
locked
|
|
|
|
|
|
|
|
worktree /path/to/linked-worktree-locked-with-reason
|
|
|
|
HEAD 3456def3456def3456def3456def3456def3456b
|
|
|
|
branch refs/heads/locked-with-reason
|
|
|
|
locked reason why is locked
|
|
|
|
|
2021-01-27 08:03:09 +00:00
|
|
|
worktree /path/to/linked-worktree-prunable
|
|
|
|
HEAD 1233def1234def1234def1234def1234def1234b
|
|
|
|
detached
|
|
|
|
prunable gitdir file points to non-existent location
|
|
|
|
|
2021-01-27 08:03:08 +00:00
|
|
|
------------
|
|
|
|
|
2022-03-31 16:21:28 +00:00
|
|
|
Unless `-z` is used any "unusual" characters in the lock reason such as newlines
|
2021-01-27 08:03:08 +00:00
|
|
|
are escaped and the entire reason is quoted as explained for the
|
|
|
|
configuration variable `core.quotePath` (see linkgit:git-config[1]).
|
|
|
|
For Example:
|
|
|
|
|
|
|
|
------------
|
|
|
|
$ git worktree list --porcelain
|
|
|
|
...
|
|
|
|
locked "reason\nwhy is locked"
|
|
|
|
...
|
2015-10-08 17:01:05 +00:00
|
|
|
------------
|
|
|
|
|
2015-07-06 17:30:44 +00:00
|
|
|
EXAMPLES
|
|
|
|
--------
|
|
|
|
You are in the middle of a refactoring session and your boss comes in and
|
|
|
|
demands that you fix something immediately. You might typically use
|
|
|
|
linkgit:git-stash[1] to store your changes away temporarily, however, your
|
2015-07-20 05:29:18 +00:00
|
|
|
working tree is in such a state of disarray (with new, moved, and removed
|
|
|
|
files, and other bits and pieces strewn around) that you don't want to risk
|
2022-02-23 14:29:19 +00:00
|
|
|
disturbing any of it. Instead, you create a temporary linked worktree to
|
2015-07-06 17:30:44 +00:00
|
|
|
make the emergency fix, remove it when done, and then resume your earlier
|
|
|
|
refactoring session.
|
|
|
|
|
|
|
|
------------
|
2015-07-06 17:30:53 +00:00
|
|
|
$ git worktree add -b emergency-fix ../temp master
|
2015-07-06 17:30:44 +00:00
|
|
|
$ pushd ../temp
|
|
|
|
# ... hack hack hack ...
|
|
|
|
$ git commit -a -m 'emergency fix for boss'
|
|
|
|
$ popd
|
2018-04-09 07:33:59 +00:00
|
|
|
$ git worktree remove ../temp
|
2015-07-06 17:30:44 +00:00
|
|
|
------------
|
|
|
|
|
2015-07-06 17:30:41 +00:00
|
|
|
BUGS
|
|
|
|
----
|
2015-07-16 22:59:48 +00:00
|
|
|
Multiple checkout in general is still experimental, and the support
|
|
|
|
for submodules is incomplete. It is NOT recommended to make multiple
|
|
|
|
checkouts of a superproject.
|
2015-07-06 17:30:41 +00:00
|
|
|
|
2015-06-29 12:51:18 +00:00
|
|
|
GIT
|
|
|
|
---
|
|
|
|
Part of the linkgit:git[1] suite
|