test-lib: provide case insensitivity as a prerequisite
[git/dscho.git] / Documentation / git-write-tree.txt
blobf22041a9dc3965b4a4f704e84ec7700a5993d5c6
1 git-write-tree(1)
2 =================
4 NAME
5 ----
6 git-write-tree - Create a tree object from the current index
9 SYNOPSIS
10 --------
11 [verse]
12 'git write-tree' [--missing-ok] [--prefix=<prefix>/]
14 DESCRIPTION
15 -----------
16 Creates a tree object using the current index. The name of the new
17 tree object is printed to standard output.
19 The index must be in a fully merged state.
21 Conceptually, 'git write-tree' sync()s the current index contents
22 into a set of tree files.
23 In order to have that match what is actually in your directory right
24 now, you need to have done a 'git update-index' phase before you did the
25 'git write-tree'.
28 OPTIONS
29 -------
30 --missing-ok::
31         Normally 'git write-tree' ensures that the objects referenced by the
32         directory exist in the object database.  This option disables this
33         check.
35 --prefix=<prefix>/::
36         Writes a tree object that represents a subdirectory
37         `<prefix>`.  This can be used to write the tree object
38         for a subproject that is in the named subdirectory.
40 GIT
41 ---
42 Part of the linkgit:git[1] suite