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
|
|
|
|
--------
|
2006-04-26 10:20:50 +02:00
|
|
|
'git-write-tree' [--missing-ok] [--prefix=<prefix>/]
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-11-11 02:12:27 +01:00
|
|
|
Creates a tree object using the current index.
|
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
|
|
|
|
2005-12-06 06:13:03 +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
|
2005-12-06 06:13:03 +01:00
|
|
|
now, you need to have done a `git-update-index` phase before you did the
|
|
|
|
`git-write-tree`.
|
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2005-07-11 05:53:44 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
--missing-ok::
|
2005-12-06 06:13:03 +01:00
|
|
|
Normally `git-write-tree` ensures that the objects referenced by the
|
|
|
|
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
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|