2005-05-11 01:32:30 +04:00
|
|
|
git-write-tree(1)
|
|
|
|
=================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2005-11-11 04:12:27 +03:00
|
|
|
git-write-tree - Creates a tree object from the current index
|
2005-05-11 01:32:30 +04:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-07-29 13:00:45 +04:00
|
|
|
'git-write-tree' [--missing-ok]
|
2005-05-11 01:32:30 +04:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-11-11 04:12:27 +03:00
|
|
|
Creates a tree object using the current index.
|
2005-05-11 01:32:30 +04:00
|
|
|
|
2005-11-11 04:12:27 +03:00
|
|
|
The index must be merged.
|
2005-05-11 01:32:30 +04:00
|
|
|
|
2005-11-11 04:12:27 +03:00
|
|
|
Conceptually, "git-write-tree" sync()s the current index contents
|
2005-05-11 01:32:30 +04:00
|
|
|
into a set of tree files.
|
|
|
|
In order to have that match what is actually in your directory right
|
2005-09-08 04:26:23 +04:00
|
|
|
now, you need to have done a "git-update-index" phase before you did the
|
2005-05-11 01:32:30 +04:00
|
|
|
"git-write-tree".
|
|
|
|
|
2005-07-11 07:53:44 +04:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
--missing-ok::
|
|
|
|
Normally "git-write-tree" ensures that the objects referenced by the
|
|
|
|
directory exist in the object database. This option disables this check.
|
2005-05-11 01:32:30 +04: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 14:10:51 +04:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-05-11 01:32:30 +04:00
|
|
|
|