2 .\" Title: git-read-tree
3 .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
7 .\" Source: Git 2.47.0.rc1.33.g90fe3800b9
10 .TH "GIT\-READ\-TREE" "1" "2024-10-04" "Git 2\&.47\&.0\&.rc1\&.33\&.g9" "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>]])
41 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))
43 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\&.
45 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\&.
50 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\&.
55 Same as \-m, except that unmerged entries are discarded instead of failing\&. When used with
56 \fB\-u\fR, updates leading to loss of working tree changes or untracked files or directories will not abort the operation\&.
61 After a successful merge, update the files in the work tree with the result of the merge\&.
66 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\&.
71 Check if the command would error out, without updating the index or the files in the working tree for real\&.
76 Show the progress of checking files out\&.
81 Restrict three\-way merge by
83 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\&.
88 Usually a three\-way merge by
90 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:
100 when one side removes a path and the other side leaves the path unmodified\&. The resolution is to remove that path\&.
111 when both sides remove a path\&. The resolution is to remove that path\&.
122 when both sides add a path identically\&. The resolution is to add that path\&.
128 Keep the current index contents, and read the contents of the named tree\-ish under the directory at
129 \fB<prefix>\fR\&. The command will refuse to overwrite entries that already existed in the original index file\&.
132 \-\-index\-output=<file>
134 Instead of writing the results out to
135 \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\&.
138 \-\-[no\-]recurse\-submodules
140 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\&.
143 \-\-no\-sparse\-checkout
145 Disable sparse checkout support even if
146 \fBcore\&.sparseCheckout\fR
152 Instead of reading tree object(s) into the index, just empty it\&.
157 Quiet, suppress feedback messages\&.
162 The id of the tree object(s) to be read/merged\&.
166 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\&.
167 .SS "Single Tree Merge"
169 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)\&.
171 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\&.
173 This is used to avoid unnecessary false hits when \fIgit diff\-files\fR is run after \fIgit read\-tree\fR\&.
176 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)\&.
178 When two trees are specified, the user is telling \fIgit read\-tree\fR the following:
188 The current index and work tree is derived from $H, but the user may have local changes in them since $H\&.
199 The user wants to fast\-forward to $M\&.
202 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:
209 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
210 0 nothing nothing nothing (does not happen)
211 1 nothing nothing exists use M
212 2 nothing exists nothing remove path from index
213 3 nothing exists exists, use M if "initial checkout",
214 H == M keep index otherwise
219 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
220 4 yes N/A N/A nothing nothing keep index
221 5 no N/A N/A nothing nothing keep index
223 6 yes N/A yes nothing exists keep index
224 7 no N/A yes nothing exists keep index
225 8 yes N/A no nothing exists fail
226 9 no N/A no nothing exists fail
228 10 yes yes N/A exists nothing remove path from index
229 11 no yes N/A exists nothing fail
230 12 yes no N/A exists nothing fail
231 13 no no N/A exists nothing fail
235 14 yes exists exists keep index
236 15 no exists exists keep index
238 clean I==H I==M (H!=M)
239 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
240 16 yes no no exists exists fail
241 17 no no no exists exists fail
242 18 yes no yes exists exists keep index
243 19 no no yes exists exists keep index
244 20 yes yes no exists exists use M
245 21 no yes no exists exists fail
251 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\&.
253 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\&.
255 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\&.
258 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\&.
260 However, when you do \fIgit read\-tree\fR with three trees, the "stage" starts out at 1\&.
262 This means that you can do
268 $ git read\-tree \-m <tree1> <tree2> <tree3>
274 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>\&.
276 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":
286 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)
297 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)
308 stage 1 and stage 3 are the same and stage 2 is different take stage 2 (we did something while they did nothing)
311 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\&.
313 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)\&.
315 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:
325 if a file exists in identical format in all three trees, it will automatically collapse to "merged" state by
326 \fIgit read\-tree\fR\&.
339 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\&.
350 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:
360 you walk the index in order, and ignore all entries of stage 0, since they\(cqve already been done\&.
371 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\&.
382 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 \&.\&.
386 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\&.
388 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\&.
390 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:
396 $ JC=`git rev\-parse \-\-verify "HEAD^0"`
397 $ git checkout\-index \-f \-u \-a $JC
403 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:
409 $ git fetch git://\&.\&.\&.\&. linus
410 $ LT=`git rev\-parse FETCH_HEAD`
416 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:
422 $ git read\-tree \-m \-u `git merge\-base $JC $LT` $JC $LT
423 $ git merge\-index git\-merge\-one\-file \-a
424 $ echo "Merge with Linus" | \e
425 git commit\-tree `git write\-tree` \-p $JC \-p $LT
431 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\&.
433 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\&.
435 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\&.
436 .SH "SPARSE CHECKOUT"
438 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\&.
440 "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\&.
442 \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\&.
444 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\&.
446 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:
459 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:
471 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\&.
474 \fBgit-write-tree\fR(1), \fBgit-ls-files\fR(1), \fBgitignore\fR(5), \fBgit-sparse-checkout\fR(1)
477 Part of the \fBgit\fR(1) suite