2005-05-10 23:32:30 +02:00
|
|
|
git-write-tree(1)
|
|
|
|
=================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-write-tree - Create a tree object from the current index
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
2008-06-30 08:09:04 +02:00
|
|
|
'git write-tree' [--missing-ok] [--prefix=<prefix>/]
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2009-08-26 16:04:54 +02:00
|
|
|
Creates a tree object using the current index. The name of the new
|
|
|
|
tree object is printed to standard output.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2005-12-06 06:13:03 +01:00
|
|
|
The index must be in a fully merged state.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
Conceptually, 'git write-tree' sync()s the current index contents
|
2005-05-10 23:32:30 +02:00
|
|
|
into a set of tree files.
|
|
|
|
In order to have that match what is actually in your directory right
|
2010-01-10 00:33:00 +01:00
|
|
|
now, you need to have done a 'git update-index' phase before you did the
|
|
|
|
'git write-tree'.
|
2005-12-06 06:13:03 +01:00
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2005-07-11 05:53:44 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
--missing-ok::
|
2010-01-10 00:33:00 +01:00
|
|
|
Normally 'git write-tree' ensures that the objects referenced by the
|
2005-12-06 06:13:03 +01:00
|
|
|
directory exist in the object database. This option disables this
|
|
|
|
check.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2006-04-26 10:20:50 +02:00
|
|
|
--prefix=<prefix>/::
|
|
|
|
Writes a tree object that represents a subdirectory
|
|
|
|
`<prefix>`. This can be used to write the tree object
|
|
|
|
for a subproject that is in the named subdirectory.
|
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|