Autogenerated manpages for v2.47.0-rc0
[git-manpages.git] / man1 / git-mktree.1
blob51f5a3af417429d14f0584e097f1abd0865f284e
1 '\" t
2 .\"     Title: git-mktree
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-09-25
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.47.0.rc0
8 .\"  Language: English
9 .\"
10 .TH "GIT\-MKTREE" "1" "2024-09-25" "Git 2\&.47\&.0\&.rc0" "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 .SH "DESCRIPTION"
38 .sp
39 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\&.
40 .SH "OPTIONS"
41 .PP
42 \-z
43 .RS 4
44 Read the NUL\-terminated
45 \fBls\-tree \-z\fR
46 output instead\&.
47 .RE
48 .PP
49 \-\-missing
50 .RS 4
51 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\&.
52 .RE
53 .PP
54 \-\-batch
55 .RS 4
56 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
57 \fB\-z\fR
58 option is used, lines are terminated with NUL\&.
59 .RE
60 .SH "GIT"
61 .sp
62 Part of the \fBgit\fR(1) suite