summaryrefslogtreecommitdiffstats
path: root/man5
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-05-10 11:59:28 -0700
committerJunio C Hamano <gitster@pobox.com>2023-05-10 11:59:28 -0700
commit5ab02d38c7657f267a14609f64185911cab1217d (patch)
treea614cb314a0ff4428be8670f03a4760ad77b874a /man5
parent3ecb13f4abfbf0ca18185107737839bfafdfe4a8 (diff)
downloadgit-manpages-5ab02d38c7657f267a14609f64185911cab1217d.tar.gz
Autogenerated manpages for v2.40.1-552-g91428
Diffstat (limited to 'man5')
-rw-r--r--man5/gitattributes.536
-rw-r--r--man5/gitformat-bundle.56
-rw-r--r--man5/gitformat-chunk.56
-rw-r--r--man5/gitformat-commit-graph.56
-rw-r--r--man5/gitformat-index.56
-rw-r--r--man5/gitformat-pack.56
-rw-r--r--man5/gitformat-signature.56
-rw-r--r--man5/githooks.532
-rw-r--r--man5/gitignore.58
-rw-r--r--man5/gitmailmap.56
-rw-r--r--man5/gitmodules.56
-rw-r--r--man5/gitprotocol-capabilities.56
-rw-r--r--man5/gitprotocol-common.56
-rw-r--r--man5/gitprotocol-http.56
-rw-r--r--man5/gitprotocol-pack.56
-rw-r--r--man5/gitprotocol-v2.56
-rw-r--r--man5/gitrepository-layout.56
-rw-r--r--man5/gitweb.conf.56
18 files changed, 104 insertions, 62 deletions
diff --git a/man5/gitattributes.5 b/man5/gitattributes.5
index 40e5bc3c8..b246341bc 100644
--- a/man5/gitattributes.5
+++ b/man5/gitattributes.5
@@ -2,12 +2,12 @@
.\" Title: gitattributes
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITATTRIBUTES" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITATTRIBUTES" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -128,13 +128,13 @@ These attributes affect how the contents stored in the repository are copied to
\fBtext\fR
.RS 4
.sp
-This attribute enables and controls end\-of\-line normalization\&. When a text file is normalized, its line endings are converted to LF in the repository\&. To control what line ending style is used in the working directory, use the \fBeol\fR attribute for a single file and the \fBcore\&.eol\fR configuration variable for all text files\&. Note that setting \fBcore\&.autocrlf\fR to \fBtrue\fR or \fBinput\fR overrides \fBcore\&.eol\fR (see the definitions of those options in \fBgit-config\fR(1))\&.
+This attribute marks the path as a text file, which enables end\-of\-line conversion: When a matching file is added to the index, the file\(cqs line endings are normalized to LF in the index\&. Conversely, when the file is copied from the index to the working directory, its line endings may be converted from LF to CRLF depending on the \fBeol\fR attribute, the Git config, and the platform (see explanation of \fBeol\fR below)\&.
.PP
Set
.RS 4
Setting the
\fBtext\fR
-attribute on a path enables end\-of\-line normalization and marks the path as a text file\&. End\-of\-line conversion takes place without guessing the content type\&.
+attribute on a path enables end\-of\-line conversion on checkin and checkout as described above\&. Line endings are normalized to LF in the index every time the file is checked in, even if the file was previously added to Git with CRLF line endings\&.
.RE
.PP
Unset
@@ -148,7 +148,7 @@ Set to string value "auto"
.RS 4
When
\fBtext\fR
-is set to "auto", the path is marked for automatic end\-of\-line conversion\&. If Git decides that the content is text, its line endings are converted to LF on checkin\&. When the file has been committed with CRLF, no conversion is done\&.
+is set to "auto", Git decides by itself whether the file is text or binary\&. If it is text and the file was not already in Git with CRLF endings, line endings are converted on checkin and checkout as described above\&. Otherwise, no conversion is done on checkin or checkout\&.
.RE
.PP
Unspecified
@@ -171,16 +171,34 @@ Any other value causes Git to act as if \fBtext\fR has been left unspecified\&.
\fBeol\fR
.RS 4
.sp
-This attribute sets a specific line\-ending style to be used in the working directory\&. This attribute has effect only if the \fBtext\fR attribute is set or unspecified, or if it is set to \fBauto\fR, the file is detected as text, and it is stored with LF endings in the index\&. Note that setting this attribute on paths which are in the index with CRLF line endings may make the paths to be considered dirty unless \fBtext=auto\fR is set\&. Adding the path to the index again will normalize the line endings in the index\&.
+This attribute marks a path to use a specific line\-ending style in the working tree when it is checked out\&. It has effect only if \fBtext\fR or \fBtext=auto\fR is set (see above), but specifying \fBeol\fR automatically sets \fBtext\fR if \fBtext\fR was left unspecified\&.
.PP
Set to string value "crlf"
.RS 4
-This setting forces Git to normalize line endings for this file on checkin and convert them to CRLF when the file is checked out\&.
+This setting converts the file\(cqs line endings in the working directory to CRLF when the file is checked out\&.
.RE
.PP
Set to string value "lf"
.RS 4
-This setting forces Git to normalize line endings to LF on checkin and prevents conversion to CRLF when the file is checked out\&.
+This setting uses the same line endings in the working directory as in the index when the file is checked out\&.
+.RE
+.PP
+Unspecified
+.RS 4
+If the
+\fBeol\fR
+attribute is unspecified for a file, its line endings in the working directory are determined by the
+\fBcore\&.autocrlf\fR
+or
+\fBcore\&.eol\fR
+configuration variable (see the definitions of those options in
+\fBgit-config\fR(1))\&. If
+\fBtext\fR
+is set but neither of those variables is, the default is
+\fBeol=crlf\fR
+on Windows and
+\fBeol=lf\fR
+on all other platforms\&.
.RE
.RE
.sp
diff --git a/man5/gitformat-bundle.5 b/man5/gitformat-bundle.5
index 0cbf59e18..79f06c1f5 100644
--- a/man5/gitformat-bundle.5
+++ b/man5/gitformat-bundle.5
@@ -2,12 +2,12 @@
.\" Title: gitformat-bundle
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITFORMAT\-BUNDLE" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITFORMAT\-BUNDLE" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitformat-chunk.5 b/man5/gitformat-chunk.5
index 43238e047..caf778f11 100644
--- a/man5/gitformat-chunk.5
+++ b/man5/gitformat-chunk.5
@@ -2,12 +2,12 @@
.\" Title: gitformat-chunk
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITFORMAT\-CHUNK" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITFORMAT\-CHUNK" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitformat-commit-graph.5 b/man5/gitformat-commit-graph.5
index e30786550..0880b5caf 100644
--- a/man5/gitformat-commit-graph.5
+++ b/man5/gitformat-commit-graph.5
@@ -2,12 +2,12 @@
.\" Title: gitformat-commit-graph
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITFORMAT\-COMMIT\-G" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITFORMAT\-COMMIT\-GRAPH" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitformat-index.5 b/man5/gitformat-index.5
index 30a3598fb..3dddce8a1 100644
--- a/man5/gitformat-index.5
+++ b/man5/gitformat-index.5
@@ -2,12 +2,12 @@
.\" Title: gitformat-index
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITFORMAT\-INDEX" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITFORMAT\-INDEX" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitformat-pack.5 b/man5/gitformat-pack.5
index 166a9cee2..3d3d59c46 100644
--- a/man5/gitformat-pack.5
+++ b/man5/gitformat-pack.5
@@ -2,12 +2,12 @@
.\" Title: gitformat-pack
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITFORMAT\-PACK" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITFORMAT\-PACK" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitformat-signature.5 b/man5/gitformat-signature.5
index 491fafcc3..82504fa48 100644
--- a/man5/gitformat-signature.5
+++ b/man5/gitformat-signature.5
@@ -2,12 +2,12 @@
.\" Title: gitformat-signature
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITFORMAT\-SIGNATURE" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITFORMAT\-SIGNATURE" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/githooks.5 b/man5/githooks.5
index a02022e8a..74b5f4fc7 100644
--- a/man5/githooks.5
+++ b/man5/githooks.5
@@ -2,12 +2,12 @@
.\" Title: githooks
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITHOOKS" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITHOOKS" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -436,7 +436,31 @@ The commits are guaranteed to be listed in the order that they were processed by
.RE
.SS "sendemail\-validate"
.sp
-This hook is invoked by \fBgit-send-email\fR(1)\&. It takes a single parameter, the name of the file that holds the e\-mail to be sent\&. Exiting with a non\-zero status causes \fBgit send\-email\fR to abort before sending any e\-mails\&.
+This hook is invoked by \fBgit-send-email\fR(1)\&.
+.sp
+It takes these command line arguments\&. They are, 1\&. the name of the file which holds the contents of the email to be sent\&. 2\&. The name of the file which holds the SMTP headers of the email\&.
+.sp
+The SMTP headers are passed in the exact same way as they are passed to the user\(cqs Mail Transport Agent (MTA)\&. In effect, the email given to the user\(cqs MTA, is the contents of $2 followed by the contents of $1\&.
+.sp
+An example of a few common headers is shown below\&. Take notice of the capitalization and multi\-line tab structure\&.
+.sp
+.if n \{\
+.RS 4
+.\}
+.nf
+From: Example <from@example\&.com>
+To: to@example\&.com
+Cc: cc@example\&.com,
+ A <author@example\&.com>,
+ One <one@example\&.com>,
+ two@example\&.com
+Subject: PATCH\-STRING
+.fi
+.if n \{\
+.RE
+.\}
+.sp
+Exiting with a non\-zero status causes \fBgit send\-email\fR to abort before sending any e\-mails\&.
.sp
The following environment variables are set when executing the hook\&.
.PP
diff --git a/man5/gitignore.5 b/man5/gitignore.5
index d9525d523..41023e754 100644
--- a/man5/gitignore.5
+++ b/man5/gitignore.5
@@ -2,12 +2,12 @@
.\" Title: gitignore
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITIGNORE" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITIGNORE" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -311,7 +311,7 @@ The optional configuration variable \fBcore\&.excludesFile\fR indicates a path t
.sp
The purpose of gitignore files is to ensure that certain files not tracked by Git remain untracked\&.
.sp
-To stop tracking a file that is currently tracked, use \fIgit rm \-\-cached\fR\&.
+To stop tracking a file that is currently tracked, use \fIgit rm \-\-cached\fR to remove the file from the index\&. The filename can then be added to the \fB\&.gitignore\fR file to stop the file from being reintroduced in later commits\&.
.sp
Git does not follow symbolic links when accessing a \fB\&.gitignore\fR file in the working tree\&. This keeps behavior consistent when the file is accessed from the index or a tree versus from the filesystem\&.
.SH "EXAMPLES"
diff --git a/man5/gitmailmap.5 b/man5/gitmailmap.5
index d84573cdc..b8aa50e00 100644
--- a/man5/gitmailmap.5
+++ b/man5/gitmailmap.5
@@ -2,12 +2,12 @@
.\" Title: gitmailmap
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITMAILMAP" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITMAILMAP" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitmodules.5 b/man5/gitmodules.5
index 5dbf49ce4..568b85bc4 100644
--- a/man5/gitmodules.5
+++ b/man5/gitmodules.5
@@ -2,12 +2,12 @@
.\" Title: gitmodules
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITMODULES" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITMODULES" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitprotocol-capabilities.5 b/man5/gitprotocol-capabilities.5
index d29f9a214..d08853a90 100644
--- a/man5/gitprotocol-capabilities.5
+++ b/man5/gitprotocol-capabilities.5
@@ -2,12 +2,12 @@
.\" Title: gitprotocol-capabilities
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITPROTOCOL\-CAPABIL" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITPROTOCOL\-CAPABILITIES" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitprotocol-common.5 b/man5/gitprotocol-common.5
index 5474916c3..6b4e30bec 100644
--- a/man5/gitprotocol-common.5
+++ b/man5/gitprotocol-common.5
@@ -2,12 +2,12 @@
.\" Title: gitprotocol-common
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITPROTOCOL\-COMMON" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITPROTOCOL\-COMMON" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitprotocol-http.5 b/man5/gitprotocol-http.5
index 2886dfc94..2eef3229a 100644
--- a/man5/gitprotocol-http.5
+++ b/man5/gitprotocol-http.5
@@ -2,12 +2,12 @@
.\" Title: gitprotocol-http
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITPROTOCOL\-HTTP" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITPROTOCOL\-HTTP" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitprotocol-pack.5 b/man5/gitprotocol-pack.5
index 84a028303..21d126092 100644
--- a/man5/gitprotocol-pack.5
+++ b/man5/gitprotocol-pack.5
@@ -2,12 +2,12 @@
.\" Title: gitprotocol-pack
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITPROTOCOL\-PACK" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITPROTOCOL\-PACK" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitprotocol-v2.5 b/man5/gitprotocol-v2.5
index 219dba159..ececbe463 100644
--- a/man5/gitprotocol-v2.5
+++ b/man5/gitprotocol-v2.5
@@ -2,12 +2,12 @@
.\" Title: gitprotocol-v2
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITPROTOCOL\-V2" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITPROTOCOL\-V2" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitrepository-layout.5 b/man5/gitrepository-layout.5
index 9f76b824c..8222d03a3 100644
--- a/man5/gitrepository-layout.5
+++ b/man5/gitrepository-layout.5
@@ -2,12 +2,12 @@
.\" Title: gitrepository-layout
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITREPOSITORY\-LAYOU" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITREPOSITORY\-LAYOUT" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man5/gitweb.conf.5 b/man5/gitweb.conf.5
index 2774c9580..2fc6f8f3d 100644
--- a/man5/gitweb.conf.5
+++ b/man5/gitweb.conf.5
@@ -2,12 +2,12 @@
.\" Title: gitweb.conf
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 2023-05-09
+.\" Date: 2023-05-10
.\" Manual: Git Manual
-.\" Source: Git 2.40.1.515.g5597cfdf47
+.\" Source: Git 2.40.1.552.g91428f078b
.\" Language: English
.\"
-.TH "GITWEB\&.CONF" "5" "2023\-05\-09" "Git 2\&.40\&.1\&.515\&.g5597cf" "Git Manual"
+.TH "GITWEB\&.CONF" "5" "2023\-05\-10" "Git 2\&.40\&.1\&.552\&.g91428f" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------