]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-write-tree.txt
Change 'cache' to 'index' in the docs
[thirdparty/git.git] / Documentation / git-write-tree.txt
CommitLineData
2cf565c5
DG
1git-write-tree(1)
2=================
2cf565c5
DG
3
4NAME
5----
5f3aa197 6git-write-tree - Creates a tree object from the current index
2cf565c5
DG
7
8
9SYNOPSIS
10--------
0b124bb4 11'git-write-tree' [--missing-ok]
2cf565c5
DG
12
13DESCRIPTION
14-----------
5f3aa197 15Creates a tree object using the current index.
2cf565c5 16
5f3aa197 17The index must be merged.
2cf565c5 18
5f3aa197 19Conceptually, "git-write-tree" sync()s the current index contents
2cf565c5
DG
20into a set of tree files.
21In order to have that match what is actually in your directory right
215a7ad1 22now, you need to have done a "git-update-index" phase before you did the
2cf565c5
DG
23"git-write-tree".
24
9c1fa70a
BL
25OPTIONS
26-------
27--missing-ok::
28 Normally "git-write-tree" ensures that the objects referenced by the
29 directory exist in the object database. This option disables this check.
2cf565c5 30
2cf565c5
DG
31Author
32------
33Written by Linus Torvalds <torvalds@osdl.org>
34
35Documentation
36--------------
37Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
38
39GIT
40---
a7154e91 41Part of the gitlink:git[7] suite
2cf565c5 42