Autogenerated manpages for v2.43.0-493-gbc7ee2
[git-manpages.git] / man1 / git-mktree.1
blobee82c05d75603461b60004e2142e44fa4526f8a4
1 '\" t
2 .\"     Title: git-mktree
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2024-01-30
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.43.0.493.gbc7ee2e5e1
8 .\"  Language: English
9 .\"
10 .TH "GIT\-MKTREE" "1" "2024\-01\-30" "Git 2\&.43\&.0\&.493\&.gbc7ee2" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-mktree \- Build a tree\-object from ls\-tree formatted text
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit mktree\fR [\-z] [\-\-missing] [\-\-batch]
36 .fi
37 .sp
38 .SH "DESCRIPTION"
39 .sp
40 Reads standard input in non\-recursive \fBls\-tree\fR output format, and creates a tree object\&. The order of the tree entries is normalized by mktree so pre\-sorting the input is not required\&. The object name of the tree object built is written to the standard output\&.
41 .SH "OPTIONS"
42 .PP
43 \-z
44 .RS 4
45 Read the NUL\-terminated
46 \fBls\-tree \-z\fR
47 output instead\&.
48 .RE
49 .PP
50 \-\-missing
51 .RS 4
52 Allow missing objects\&. The default behaviour (without this option) is to verify that each tree entry\(cqs hash identifies an existing object\&. This option has no effect on the treatment of gitlink entries (aka "submodules") which are always allowed to be missing\&.
53 .RE
54 .PP
55 \-\-batch
56 .RS 4
57 Allow building of more than one tree object before exiting\&. Each tree is separated by a single blank line\&. The final newline is optional\&. Note \- if the
58 \fB\-z\fR
59 option is used, lines are terminated with NUL\&.
60 .RE
61 .SH "GIT"
62 .sp
63 Part of the \fBgit\fR(1) suite