2 .\" Title: git-commit-tree
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/>
7 .\" Source: Git 2.46.1.603.g94b60adee3
10 .TH "GIT\-COMMIT\-TREE" "1" "2024-09-20" "Git 2\&.46\&.1\&.603\&.g94b60a" "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 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 git-commit-tree \- Create a new commit object
35 \fIgit commit\-tree\fR <tree> [(\-p <parent>)\&...\:]
36 \fIgit commit\-tree\fR [(\-p <parent>)\&...\:] [\-S[<keyid>]] [(\-m <message>)\&...\:]
37 [(\-F <file>)\&...\:] <tree>
41 This is usually not what an end user wants to run directly\&. See \fBgit-commit\fR(1) instead\&.
43 Creates a new commit object based on the provided tree object and emits the new commit object id on stdout\&. The log message is read from the standard input, unless \fB\-m\fR or \fB\-F\fR options are given\&.
45 The \fB\-m\fR and \fB\-F\fR options can be given any number of times, in any order\&. The commit log message will be composed in the order in which the options are given\&.
47 A commit object may have any number of parents\&. With exactly one parent, it is an ordinary commit\&. Having more than one parent makes the commit a merge between several lines of history\&. Initial (root) commits have no parents\&.
49 While a tree represents a particular directory state of a working directory, a commit represents that state in "time", and explains how to get there\&.
51 Normally a commit would identify a new "HEAD" state, and while Git doesn\(cqt care where you save the note about that state, in practice we tend to just write the result to the file that is pointed at by \fB\&.git/HEAD\fR, so that we can always see what the last committed state was\&.
56 An existing tree object\&.
63 indicates the id of a parent commit object\&.
68 A paragraph in the commit log message\&. This can be given more than once and each <message> becomes its own paragraph\&.
73 Read the commit log message from the given file\&. Use
75 to read from the standard input\&. This can be given more than once and the content of each file becomes its own paragraph\&.
78 \-S[<keyid>], \-\-gpg\-sign[=<keyid>], \-\-no\-gpg\-sign
80 GPG\-sign commits\&. The
82 argument is optional and defaults to the committer identity; if specified, it must be stuck to the option without a space\&.
83 \fB\-\-no\-gpg\-sign\fR
84 is useful to countermand a
86 option given earlier on the command line\&.
88 .SH "COMMIT INFORMATION"
90 A commit encapsulates:
100 all parent object ids
111 author name, email and date
122 committer name and email and the commit time\&.
125 A commit comment is read from stdin\&. If a changelog entry is not provided via "<" redirection, \fIgit commit\-tree\fR will just wait for one to be entered and terminated with ^D\&.
128 The \fBGIT_AUTHOR_DATE\fR and \fBGIT_COMMITTER_DATE\fR environment variables support the following date formats:
133 \fB<unix\-timestamp> <time\-zone\-offset>\fR, where
134 \fB<unix\-timestamp>\fR
135 is the number of seconds since the UNIX epoch\&.
136 \fB<time\-zone\-offset>\fR
137 is a positive or negative offset from UTC\&. For example CET (which is 1 hour ahead of UTC) is
143 The standard date format as described by RFC 2822, for example
144 \fBThu, 07 Apr 2005 22:13:13 +0200\fR\&.
149 Time and date specified by the ISO 8601 standard, for example
150 \fB2005\-04\-07T22:13:13\fR\&. The parser accepts a space instead of the
152 character as well\&. Fractional parts of a second will be ignored, for example
153 \fB2005\-04\-07T22:13:13\&.019\fR
155 \fB2005\-04\-07T22:13:13\fR\&.
161 .nr an-no-space-flag 1
168 In addition, the date part is accepted in the following formats:
169 \fBYYYY\&.MM\&.DD\fR,
172 \fBDD\&.MM\&.YYYY\fR\&.
178 Git is to some extent character encoding agnostic\&.
188 The contents of the blob objects are uninterpreted sequences of bytes\&. There is no encoding translation at the core level\&.
199 Path names are encoded in UTF\-8 normalization form C\&. This applies to tree objects, the index file, ref names, as well as path names in command line arguments, environment variables and config files (\fB\&.git/config\fR
201 \fBgit-config\fR(1)),
203 \fBgitattributes\fR(5)
205 \fBgitmodules\fR(5))\&.
207 Note that Git at the core level treats path names simply as sequences of non\-NUL bytes, there are no path name encoding conversions (except on Mac and Windows)\&. Therefore, using non\-ASCII path names will mostly work even on platforms and file systems that use legacy extended ASCII encodings\&. However, repositories created on such systems will not work properly on UTF\-8\-based systems (e\&.g\&. Linux, Mac, Windows) and vice versa\&. Additionally, many Git\-based tools simply assume path names to be UTF\-8 and will fail to display other encodings correctly\&.
218 Commit log messages are typically encoded in UTF\-8, but other extended ASCII encodings are also supported\&. This includes ISO\-8859\-x, CP125x and many others, but
220 UTF\-16/32, EBCDIC and CJK multi\-byte encodings (GBK, Shift\-JIS, Big5, EUC\-x, CP9xx etc\&.)\&.
223 Although we encourage that the commit log messages are encoded in UTF\-8, both the core and Git Porcelain are designed not to force UTF\-8 on projects\&. If all participants of a particular project find it more convenient to use legacy encodings, Git does not forbid it\&. However, there are a few things to keep in mind\&.
235 \fIgit commit\-tree\fR
236 issue a warning if the commit log message given to it does not look like a valid UTF\-8 string, unless you explicitly say your project uses a legacy encoding\&. The way to say this is to have
237 \fBi18n\&.commitEncoding\fR
247 commitEncoding = ISO\-8859\-1
253 Commit objects created with the above setting record the value of
254 \fBi18n\&.commitEncoding\fR
257 header\&. This is to help other people who look at them later\&. Lack of this header implies that the commit log message is encoded in UTF\-8\&.
271 and friends look at the
273 header of a commit object, and try to re\-code the log message into UTF\-8 unless otherwise specified\&. You can specify the desired output encoding with
274 \fBi18n\&.logOutputEncoding\fR
284 logOutputEncoding = ISO\-8859\-1
290 If you do not have this configuration variable, the value of
291 \fBi18n\&.commitEncoding\fR
295 Note that we deliberately chose not to re\-code the commit log message when a commit is made to force UTF\-8 at the commit object level, because re\-coding to UTF\-8 is not necessarily a reversible operation\&.
301 \fBgit-write-tree\fR(1) \fBgit-commit\fR(1)
304 Part of the \fBgit\fR(1) suite