2 .\" Title: git-read-tree
3 .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
7 .\" Source: Git 2.45.2.648.g1e1586e4ed
10 .TH "GIT\-READ\-TREE" "1" "2024\-06\-24" "Git 2\&.45\&.2\&.648\&.g1e1586" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 git-read-tree \- Reads tree information into the index
35 \fIgit read\-tree\fR [(\-m [\-\-trivial] [\-\-aggressive] | \-\-reset | \-\-prefix=<prefix>)
36 [\-u | \-i]] [\-\-index\-output=<file>] [\-\-no\-sparse\-checkout]
37 (\-\-empty | <tree\-ish1> [<tree\-ish2> [<tree\-ish3>]])
42 Reads the tree information given by <tree\-ish> into the index, but does not actually \fBupdate\fR any of the files it "caches"\&. (see: \fBgit-checkout-index\fR(1))
44 Optionally, it can merge a tree into the index, perform a fast\-forward (i\&.e\&. 2\-way) merge, or a 3\-way merge, with the \fB\-m\fR flag\&. When used with \fB\-m\fR, the \fB\-u\fR flag causes it to also update the files in the work tree with the result of the merge\&.
46 Only trivial merges are done by \fIgit read\-tree\fR itself\&. Only conflicting paths will be in an unmerged state when \fIgit read\-tree\fR returns\&.
51 Perform a merge, not just a read\&. The command will refuse to run if your index file has unmerged entries, indicating that you have not finished a previous merge you started\&.
56 Same as \-m, except that unmerged entries are discarded instead of failing\&. When used with
57 \fB\-u\fR, updates leading to loss of working tree changes or untracked files or directories will not abort the operation\&.
62 After a successful merge, update the files in the work tree with the result of the merge\&.
67 Usually a merge requires the index file as well as the files in the working tree to be up to date with the current head commit, in order not to lose local changes\&. This flag disables the check with the working tree and is meant to be used when creating a merge of trees that are not directly related to the current working tree status into a temporary index file\&.
72 Check if the command would error out, without updating the index or the files in the working tree for real\&.
77 Show the progress of checking files out\&.
82 Restrict three\-way merge by
84 to happen only if there is no file\-level merging required, instead of resolving merge for trivial cases and leaving conflicting files unresolved in the index\&.
89 Usually a three\-way merge by
91 resolves the merge for really trivial cases and leaves other cases unresolved in the index, so that porcelains can implement different merge policies\&. This flag makes the command resolve a few more cases internally:
101 when one side removes a path and the other side leaves the path unmodified\&. The resolution is to remove that path\&.
112 when both sides remove a path\&. The resolution is to remove that path\&.
123 when both sides add a path identically\&. The resolution is to add that path\&.
129 Keep the current index contents, and read the contents of the named tree\-ish under the directory at
130 \fB<prefix>\fR\&. The command will refuse to overwrite entries that already existed in the original index file\&.
133 \-\-index\-output=<file>
135 Instead of writing the results out to
136 \fB$GIT_INDEX_FILE\fR, write the resulting index in the named file\&. While the command is operating, the original index file is locked with the same mechanism as usual\&. The file must allow to be rename(2)ed into from a temporary file that is created next to the usual index file; typically this means it needs to be on the same filesystem as the index file itself, and you need write permission to the directories the index file and index output file are located in\&.
139 \-\-[no\-]recurse\-submodules
141 Using \-\-recurse\-submodules will update the content of all active submodules according to the commit recorded in the superproject by calling read\-tree recursively, also setting the submodules\*(Aq HEAD to be detached at that commit\&.
144 \-\-no\-sparse\-checkout
146 Disable sparse checkout support even if
147 \fBcore\&.sparseCheckout\fR
153 Instead of reading tree object(s) into the index, just empty it\&.
158 Quiet, suppress feedback messages\&.
163 The id of the tree object(s) to be read/merged\&.
167 If \fB\-m\fR is specified, \fIgit read\-tree\fR can perform 3 kinds of merge, a single tree merge if only 1 tree is given, a fast\-forward merge with 2 trees, or a 3\-way merge if 3 or more trees are provided\&.
168 .SS "Single Tree Merge"
170 If only 1 tree is specified, \fIgit read\-tree\fR operates as if the user did not specify \fB\-m\fR, except that if the original index has an entry for a given pathname, and the contents of the path match with the tree being read, the stat info from the index is used\&. (In other words, the index\(cqs stat()s take precedence over the merged tree\(cqs)\&.
172 That means that if you do a \fBgit read\-tree \-m <newtree>\fR followed by a \fBgit checkout\-index \-f \-u \-a\fR, the \fIgit checkout\-index\fR only checks out the stuff that really changed\&.
174 This is used to avoid unnecessary false hits when \fIgit diff\-files\fR is run after \fIgit read\-tree\fR\&.
177 Typically, this is invoked as \fBgit read\-tree \-m $H $M\fR, where $H is the head commit of the current repository, and $M is the head of a foreign tree, which is simply ahead of $H (i\&.e\&. we are in a fast\-forward situation)\&.
179 When two trees are specified, the user is telling \fIgit read\-tree\fR the following:
189 The current index and work tree is derived from $H, but the user may have local changes in them since $H\&.
200 The user wants to fast\-forward to $M\&.
203 In this case, the \fBgit read\-tree \-m $H $M\fR command makes sure that no local change is lost as the result of this "merge"\&. Here are the "carry forward" rules, where "I" denotes the index, "clean" means that index and work tree coincide, and "exists"/"nothing" refer to the presence of a path in the specified commit:
210 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
211 0 nothing nothing nothing (does not happen)
212 1 nothing nothing exists use M
213 2 nothing exists nothing remove path from index
214 3 nothing exists exists, use M if "initial checkout",
215 H == M keep index otherwise
220 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
221 4 yes N/A N/A nothing nothing keep index
222 5 no N/A N/A nothing nothing keep index
224 6 yes N/A yes nothing exists keep index
225 7 no N/A yes nothing exists keep index
226 8 yes N/A no nothing exists fail
227 9 no N/A no nothing exists fail
229 10 yes yes N/A exists nothing remove path from index
230 11 no yes N/A exists nothing fail
231 12 yes no N/A exists nothing fail
232 13 no no N/A exists nothing fail
236 14 yes exists exists keep index
237 15 no exists exists keep index
239 clean I==H I==M (H!=M)
240 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
241 16 yes no no exists exists fail
242 17 no no no exists exists fail
243 18 yes no yes exists exists keep index
244 19 no no yes exists exists keep index
245 20 yes yes no exists exists use M
246 21 no yes no exists exists fail
252 In all "keep index" cases, the index entry stays as in the original index file\&. If the entry is not up to date, \fIgit read\-tree\fR keeps the copy in the work tree intact when operating under the \-u flag\&.
254 When this form of \fIgit read\-tree\fR returns successfully, you can see which of the "local changes" that you made were carried forward by running \fBgit diff\-index \-\-cached $M\fR\&. Note that this does not necessarily match what \fBgit diff\-index \-\-cached $H\fR would have produced before such a two tree merge\&. This is because of cases 18 and 19 \(em if you already had the changes in $M (e\&.g\&. maybe you picked it up via e\-mail in a patch form), \fBgit diff\-index \-\-cached $H\fR would have told you about the change before this merge, but it would not show in \fBgit diff\-index \-\-cached $M\fR output after the two\-tree merge\&.
256 Case 3 is slightly tricky and needs explanation\&. The result from this rule logically should be to remove the path if the user staged the removal of the path and then switching to a new branch\&. That however will prevent the initial checkout from happening, so the rule is modified to use M (new tree) only when the content of the index is empty\&. Otherwise the removal of the path is kept as long as $H and $M are the same\&.
259 Each "index" entry has two bits worth of "stage" state\&. stage 0 is the normal one, and is the only one you\(cqd see in any kind of normal use\&.
261 However, when you do \fIgit read\-tree\fR with three trees, the "stage" starts out at 1\&.
263 This means that you can do
269 $ git read\-tree \-m <tree1> <tree2> <tree3>
276 and you will end up with an index with all of the <tree1> entries in "stage1", all of the <tree2> entries in "stage2" and all of the <tree3> entries in "stage3"\&. When performing a merge of another branch into the current branch, we use the common ancestor tree as <tree1>, the current branch head as <tree2>, and the other branch head as <tree3>\&.
278 Furthermore, \fIgit read\-tree\fR has special\-case logic that says: if you see a file that matches in all respects in the following states, it "collapses" back to "stage0":
288 stage 2 and 3 are the same; take one or the other (it makes no difference \- the same work has been done on our branch in stage 2 and their branch in stage 3)
299 stage 1 and stage 2 are the same and stage 3 is different; take stage 3 (our branch in stage 2 did not do anything since the ancestor in stage 1 while their branch in stage 3 worked on it)
310 stage 1 and stage 3 are the same and stage 2 is different take stage 2 (we did something while they did nothing)
313 The \fIgit write\-tree\fR command refuses to write a nonsensical tree, and it will complain about unmerged entries if it sees a single entry that is not stage 0\&.
315 OK, this all sounds like a collection of totally nonsensical rules, but it\(cqs actually exactly what you want in order to do a fast merge\&. The different stages represent the "result tree" (stage 0, aka "merged"), the original tree (stage 1, aka "orig"), and the two trees you are trying to merge (stage 2 and 3 respectively)\&.
317 The order of stages 1, 2 and 3 (hence the order of three <tree\-ish> command\-line arguments) are significant when you start a 3\-way merge with an index file that is already populated\&. Here is an outline of how the algorithm works:
327 if a file exists in identical format in all three trees, it will automatically collapse to "merged" state by
328 \fIgit read\-tree\fR\&.
341 difference what\-so\-ever in the three trees will stay as separate entries in the index\&. It\(cqs up to "porcelain policy" to determine how to remove the non\-0 stages, and insert a merged version\&.
352 the index file saves and restores with all this information, so you can merge things incrementally, but as long as it has entries in stages 1/2/3 (i\&.e\&., "unmerged entries") you can\(cqt write the result\&. So now the merge algorithm ends up being really simple:
362 you walk the index in order, and ignore all entries of stage 0, since they\(cqve already been done\&.
373 if you find a "stage1", but no matching "stage2" or "stage3", you know it\(cqs been removed from both trees (it only existed in the original tree), and you remove that entry\&.
384 if you find a matching "stage2" and "stage3" tree, you remove one of them, and turn the other into a "stage0" entry\&. Remove any matching "stage1" entry if it exists too\&. \&.\&. all the normal trivial rules \&.\&.
388 You would normally use \fIgit merge\-index\fR with supplied \fIgit merge\-one\-file\fR to do this last step\&. The script updates the files in the working tree as it merges each path and at the end of a successful merge\&.
390 When you start a 3\-way merge with an index file that is already populated, it is assumed that it represents the state of the files in your work tree, and you can even have files with changes unrecorded in the index file\&. It is further assumed that this state is "derived" from the stage 2 tree\&. The 3\-way merge refuses to run if it finds an entry in the original index file that does not match stage 2\&.
392 This is done to prevent you from losing your work\-in\-progress changes, and mixing your random changes in an unrelated merge commit\&. To illustrate, suppose you start from what has been committed last to your repository:
398 $ JC=`git rev\-parse \-\-verify "HEAD^0"`
399 $ git checkout\-index \-f \-u \-a $JC
406 You do random edits, without running \fIgit update\-index\fR\&. And then you notice that the tip of your "upstream" tree has advanced since you pulled from him:
412 $ git fetch git://\&.\&.\&.\&. linus
413 $ LT=`git rev\-parse FETCH_HEAD`
420 Your work tree is still based on your HEAD ($JC), but you have some edits since\&. Three\-way merge makes sure that you have not added or modified index entries since $JC, and if you haven\(cqt, then does the right thing\&. So with the following sequence:
426 $ git read\-tree \-m \-u `git merge\-base $JC $LT` $JC $LT
427 $ git merge\-index git\-merge\-one\-file \-a
428 $ echo "Merge with Linus" | \e
429 git commit\-tree `git write\-tree` \-p $JC \-p $LT
436 what you would commit is a pure merge between $JC and $LT without your work\-in\-progress changes, and your work tree would be updated to the result of the merge\&.
438 However, if you have local changes in the working tree that would be overwritten by this merge, \fIgit read\-tree\fR will refuse to run to prevent your changes from being lost\&.
440 In other words, there is no need to worry about what exists only in the working tree\&. When you have local changes in a part of the project that is not involved in the merge, your changes do not interfere with the merge, and are kept intact\&. When they \fBdo\fR interfere, the merge does not even start (\fIgit read\-tree\fR complains loudly and fails without modifying anything)\&. In such a case, you can simply continue doing what you were in the middle of doing, and when your working tree is ready (i\&.e\&. you have finished your work\-in\-progress), attempt the merge again\&.
441 .SH "SPARSE CHECKOUT"
443 Note: The skip\-worktree capabilities in \fBgit-update-index\fR(1) and \fBread\-tree\fR predated the introduction of \fBgit-sparse-checkout\fR(1)\&. Users are encouraged to use the \fBsparse\-checkout\fR command in preference to these plumbing commands for sparse\-checkout/skip\-worktree related needs\&. However, the information below might be useful to users trying to understand the pattern style used in non\-cone mode of the \fBsparse\-checkout\fR command\&.
445 "Sparse checkout" allows populating the working directory sparsely\&. It uses the skip\-worktree bit (see \fBgit-update-index\fR(1)) to tell Git whether a file in the working directory is worth looking at\&.
447 \fIgit read\-tree\fR and other merge\-based commands (\fIgit merge\fR, \fIgit checkout\fR\&...) can help maintaining the skip\-worktree bitmap and working directory update\&. \fB$GIT_DIR/info/sparse\-checkout\fR is used to define the skip\-worktree reference bitmap\&. When \fIgit read\-tree\fR needs to update the working directory, it resets the skip\-worktree bit in the index based on this file, which uses the same syntax as \&.gitignore files\&. If an entry matches a pattern in this file, or the entry corresponds to a file present in the working tree, then skip\-worktree will not be set on that entry\&. Otherwise, skip\-worktree will be set\&.
449 Then it compares the new skip\-worktree value with the previous one\&. If skip\-worktree turns from set to unset, it will add the corresponding file back\&. If it turns from unset to set, that file will be removed\&.
451 While \fB$GIT_DIR/info/sparse\-checkout\fR is usually used to specify what files are in, you can also specify what files are \fInot\fR in, using negate patterns\&. For example, to remove the file \fBunwanted\fR:
465 Another tricky thing is fully repopulating the working directory when you no longer want sparse checkout\&. You cannot just disable "sparse checkout" because skip\-worktree bits are still in the index and your working directory is still sparsely populated\&. You should re\-populate the working directory with the \fB$GIT_DIR/info/sparse\-checkout\fR file content as follows:
478 Then you can disable sparse checkout\&. Sparse checkout support in \fIgit read\-tree\fR and similar commands is disabled by default\&. You need to turn \fBcore\&.sparseCheckout\fR on in order to have sparse checkout support\&.
481 \fBgit-write-tree\fR(1), \fBgit-ls-files\fR(1), \fBgitignore\fR(5), \fBgit-sparse-checkout\fR(1)
484 Part of the \fBgit\fR(1) suite