transport-helper: change import semantics
[git/dscho.git] / Documentation / git-mktree.txt
blobafe21be64dfa9ea2540f9c4fc24d97413643879f
1 git-mktree(1)
2 =============
4 NAME
5 ----
6 git-mktree - Build a tree-object from ls-tree formatted text
9 SYNOPSIS
10 --------
11 'git mktree' [-z] [--missing] [--batch]
13 DESCRIPTION
14 -----------
15 Reads standard input in non-recursive `ls-tree` output format, and creates
16 a tree object.  The order of the tree entries is normalised by mktree so
17 pre-sorting the input is not required.  The object name of the tree object
18 built is written to the standard output.
20 OPTIONS
21 -------
22 -z::
23         Read the NUL-terminated `ls-tree -z` output instead.
25 --missing::
26         Allow missing objects.  The default behaviour (without this option)
27         is to verify that each tree entry's sha1 identifies an existing
28         object.  This option has no effect on the treatment of gitlink entries
29         (aka "submodules") which are always allowed to be missing.
31 --batch::
32         Allow building of more than one tree object before exiting.  Each
33         tree is separated by as single blank line. The final new-line is
34         optional.  Note - if the '-z' option is used, lines are terminated
35         with NUL.
37 GIT
38 ---
39 Part of the linkgit:git[1] suite