summaryrefslogtreecommitdiffstats
path: root/man7
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-03-28 12:36:46 -0700
committerJunio C Hamano <gitster@pobox.com>2023-03-28 12:36:46 -0700
commit5e6ae018e47aec56fa4bc3a1ea9f5fffa087713f (patch)
treefc1902c62f9c3c66a4b9918e7a4dc069b6c5a238 /man7
parentd3f99433ce805f8df0cd56f7958376b824d84346 (diff)
downloadgit-manpages-5e6ae018e47aec56fa4bc3a1ea9f5fffa087713f.tar.gz
Autogenerated manpages for v2.40.0-141-g8d9035
Diffstat (limited to 'man7')
-rw-r--r--man7/gitcli.76
-rw-r--r--man7/gitcore-tutorial.722
-rw-r--r--man7/gitcredentials.78
-rw-r--r--man7/gitcvs-migration.76
-rw-r--r--man7/gitdiffcore.76
-rw-r--r--man7/giteveryday.710
-rw-r--r--man7/gitfaq.710
-rw-r--r--man7/gitglossary.710
-rw-r--r--man7/gitnamespaces.78
-rw-r--r--man7/gitremote-helpers.714
-rw-r--r--man7/gitrevisions.76
-rw-r--r--man7/gitsubmodules.76
-rw-r--r--man7/gittutorial-2.712
-rw-r--r--man7/gittutorial.78
-rw-r--r--man7/gitworkflows.76
15 files changed, 69 insertions, 69 deletions
diff --git a/man7/gitcli.7 b/man7/gitcli.7
index 54934615d..8199f0546 100644
--- a/man7/gitcli.7
+++ b/man7/gitcli.7
@@ -2,12 +2,12 @@
.\" Title: gitcli
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITCLI" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITCLI" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man7/gitcore-tutorial.7 b/man7/gitcore-tutorial.7
index 57df04e5c..330239391 100644
--- a/man7/gitcore-tutorial.7
+++ b/man7/gitcore-tutorial.7
@@ -2,12 +2,12 @@
.\" Title: gitcore-tutorial
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITCORE\-TUTORIAL" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITCORE\-TUTORIAL" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -345,7 +345,7 @@ In particular, let\(cqs not even check in the two files into Git yet, we\(cqll s
.RS 4
.\}
.nf
-$ echo "It\(aqs a new day for git" >>hello
+$ echo "It\*(Aqs a new day for git" >>hello
.fi
.if n \{\
.RE
@@ -380,7 +380,7 @@ index 557db03\&.\&.263414f 100644
+++ b/hello
@@ \-1 +1,2 @@
Hello World
-+It\(aqs a new day for git
++It\*(Aqs a new day for git
.fi
.if n \{\
.RE
@@ -404,7 +404,7 @@ index 557db03\&.\&.263414f 100644
+++ b/hello
@@ \-1 +1,2 @@
Hello World
-+It\(aqs a new day for git
++It\*(Aqs a new day for git
.fi
.if n \{\
.RE
@@ -453,7 +453,7 @@ And this is where we create the \fB\&.git/refs/heads/master\fR file which is poi
.\}
.nf
$ tree=$(git write\-tree)
-$ commit=$(echo \(aqInitial commit\(aq | git commit\-tree $tree)
+$ commit=$(echo \*(AqInitial commit\*(Aq | git commit\-tree $tree)
$ git update\-ref HEAD $commit
.fi
.if n \{\
@@ -759,7 +759,7 @@ in the new repository to make sure that the index file is up to date\&.
.sp
Note that the second point is true even across machines\&. You can duplicate a remote Git repository with \fBany\fR regular copy mechanism, be it \fIscp\fR, \fIrsync\fR or \fIwget\fR\&.
.sp
-When copying a remote repository, you\(cqll want to at a minimum update the index cache when you do this, and especially with other peoples\(aq repositories you often want to make sure that the index cache is in some known state (you don\(cqt know \fBwhat\fR they\(cqve done and not yet checked in), so usually you\(cqll precede the \fIgit update\-index\fR with a
+When copying a remote repository, you\(cqll want to at a minimum update the index cache when you do this, and especially with other peoples\*(Aq repositories you often want to make sure that the index cache is in some known state (you don\(cqt know \fBwhat\fR they\(cqve done and not yet checked in), so usually you\(cqll precede the \fIgit update\-index\fR with a
.sp
.if n \{\
.RS 4
@@ -1061,7 +1061,7 @@ Not to worry\&. It left the (trivial) conflict in \fBhello\fR in the same form y
.\}
.nf
Hello World
-It\(aqs a new day for git
+It\*(Aqs a new day for git
Play, play, play
Work, work, work
.fi
@@ -2077,9 +2077,9 @@ $ git merge commit\-fix diff\-fix
$ git show\-branch
! [commit\-fix] Fix commit message normalization\&.
! [diff\-fix] Fix rename detection\&.
- * [master] Octopus merge of branches \(aqdiff\-fix\(aq and \(aqcommit\-fix\(aq
+ * [master] Octopus merge of branches \*(Aqdiff\-fix\*(Aq and \*(Aqcommit\-fix\*(Aq
\-\-\-
- \- [master] Octopus merge of branches \(aqdiff\-fix\(aq and \(aqcommit\-fix\(aq
+ \- [master] Octopus merge of branches \*(Aqdiff\-fix\*(Aq and \*(Aqcommit\-fix\*(Aq
+ * [commit\-fix] Fix commit message normalization\&.
+* [diff\-fix] Fix rename detection\&.
+* [diff\-fix~1] Better common substring algorithm\&.
diff --git a/man7/gitcredentials.7 b/man7/gitcredentials.7
index 0c79b901b..2dda07613 100644
--- a/man7/gitcredentials.7
+++ b/man7/gitcredentials.7
@@ -2,12 +2,12 @@
.\" Title: gitcredentials
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITCREDENTIALS" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITCREDENTIALS" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -351,7 +351,7 @@ Here are some example specifications:
# the arguments are parsed by the shell, so use shell
# quoting if necessary
[credential]
- helper = "foo \-\-bar=\(aqwhitespace arg\(aq"
+ helper = "foo \-\-bar=\*(Aqwhitespace arg\*(Aq"
# you can also use an absolute path, which will not use the git wrapper
[credential]
diff --git a/man7/gitcvs-migration.7 b/man7/gitcvs-migration.7
index 99717cac0..ba9329a09 100644
--- a/man7/gitcvs-migration.7
+++ b/man7/gitcvs-migration.7
@@ -2,12 +2,12 @@
.\" Title: gitcvs-migration
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITCVS\-MIGRATION" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITCVS\-MIGRATION" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man7/gitdiffcore.7 b/man7/gitdiffcore.7
index 3c4e6aead..2560fe48a 100644
--- a/man7/gitdiffcore.7
+++ b/man7/gitdiffcore.7
@@ -2,12 +2,12 @@
.\" Title: gitdiffcore
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITDIFFCORE" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITDIFFCORE" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man7/giteveryday.7 b/man7/giteveryday.7
index d01e8b4d5..fc5d09baf 100644
--- a/man7/giteveryday.7
+++ b/man7/giteveryday.7
@@ -2,12 +2,12 @@
.\" Title: giteveryday
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITEVERYDAY" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITEVERYDAY" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -257,7 +257,7 @@ $ git diff HEAD^ \fB(6)\fR
$ git commit \-a \-\-amend \fB(7)\fR
$ git switch master \fB(8)\fR
$ git merge alsa\-audio \fB(9)\fR
-$ git log \-\-since=\(aq3 days ago\(aq \fB(10)\fR
+$ git log \-\-since=\*(Aq3 days ago\*(Aq \fB(10)\fR
$ git log v2\&.43\&.\&. curses/ \fB(11)\fR
.fi
.if n \{\
@@ -442,7 +442,7 @@ Push into another repository\&.
.nf
satellite$ git clone mothership:frotz frotz \fB(1)\fR
satellite$ cd frotz
-satellite$ git config \-\-get\-regexp \(aq^(remote|branch)\e\&.\(aq \fB(2)\fR
+satellite$ git config \-\-get\-regexp \*(Aq^(remote|branch)\e\&.\*(Aq \fB(2)\fR
remote\&.origin\&.url mothership:frotz
remote\&.origin\&.fetch refs/heads/*:refs/remotes/origin/*
branch\&.master\&.remote origin
diff --git a/man7/gitfaq.7 b/man7/gitfaq.7
index 424253024..7e427ef8e 100644
--- a/man7/gitfaq.7
+++ b/man7/gitfaq.7
@@ -2,12 +2,12 @@
.\" Title: gitfaq
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITFAQ" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITFAQ" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -137,7 +137,7 @@ Such a shell command can be specified by starting the option value with an excla
.\}
.nf
$ git config credential\&.helper \e
- \(aq!f() { echo username=author; echo "password=$GIT_TOKEN"; };f\(aq
+ \*(Aq!f() { echo username=author; echo "password=$GIT_TOKEN"; };f\*(Aq
.fi
.if n \{\
.RE
@@ -393,7 +393,7 @@ and
.\}
.nf
$ git rm \-\-cached AFile\&.txt
-$ git commit \-m \(aqRemove files conflicting in case\(aq
+$ git commit \-m \*(AqRemove files conflicting in case\*(Aq
$ git checkout \&.
.fi
.if n \{\
diff --git a/man7/gitglossary.7 b/man7/gitglossary.7
index 83b798471..812acbda5 100644
--- a/man7/gitglossary.7
+++ b/man7/gitglossary.7
@@ -2,12 +2,12 @@
.\" Title: gitglossary
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITGLOSSARY" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITGLOSSARY" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -269,7 +269,7 @@ merge
where you have a
revision
and you are "merging" another
-branch\(aqs changes that happen to be a descendant of what you have\&. In such a case, you do not make a new
+branch\*(Aqs changes that happen to be a descendant of what you have\&. In such a case, you do not make a new
merge
commit
but instead just update your branch to point at the same revision as the branch you are merging\&. This will happen frequently on a
@@ -1061,7 +1061,7 @@ object
that can be recursively dereferenced to a tree object\&. Dereferencing a
commit object
yields the tree object corresponding to the
-revision\(aqs top
+revision\*(Aqs top
directory\&. The following are all tree\-ishes: a
commit\-ish, a tree object, a
tag object
diff --git a/man7/gitnamespaces.7 b/man7/gitnamespaces.7
index 48a58c80e..2396ad4a4 100644
--- a/man7/gitnamespaces.7
+++ b/man7/gitnamespaces.7
@@ -2,12 +2,12 @@
.\" Title: gitnamespaces
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITNAMESPACES" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITNAMESPACES" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -56,7 +56,7 @@ For a simple local test, you can use \fBgit-remote-ext\fR(1):
.RS 4
.\}
.nf
-git clone ext::\(aqgit \-\-namespace=foo %s /tmp/prefixed\&.git\(aq
+git clone ext::\*(Aqgit \-\-namespace=foo %s /tmp/prefixed\&.git\*(Aq
.fi
.if n \{\
.RE
diff --git a/man7/gitremote-helpers.7 b/man7/gitremote-helpers.7
index 85d27c399..233e802b9 100644
--- a/man7/gitremote-helpers.7
+++ b/man7/gitremote-helpers.7
@@ -2,12 +2,12 @@
.\" Title: gitremote-helpers
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITREMOTE\-HELPERS" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITREMOTE\-HELPERS" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -497,17 +497,17 @@ Enables (or disables) progress messages displayed by the transport helper during
Deepens the history of a shallow repository\&.
.RE
.PP
-\(aqoption deepen\-since <timestamp>
+\*(Aqoption deepen\-since <timestamp>
.RS 4
Deepens the history of a shallow repository based on time\&.
.RE
.PP
-\(aqoption deepen\-not <ref>
+\*(Aqoption deepen\-not <ref>
.RS 4
Deepens the history of a shallow repository excluding ref\&. Multiple options add up\&.
.RE
.PP
-\fIoption deepen\-relative {\(aqtrue\fR|\fIfalse\fR}
+\fIoption deepen\-relative {\*(Aqtrue\fR|\fIfalse\fR}
.RS 4
Deepens the history of a shallow repository relative to current boundary\&. Only valid when used with "option depth"\&.
.RE
@@ -550,7 +550,7 @@ Allow to extend \&.git/shallow if the new refs require it\&.
GPG sign pushes\&.
.RE
.PP
-\(aqoption push\-option <string>
+\*(Aqoption push\-option <string>
.RS 4
Transmit <string> as a push option\&. As the push option must not contain LF or NUL characters, the string is not encoded\&.
.RE
diff --git a/man7/gitrevisions.7 b/man7/gitrevisions.7
index cdeccdf54..fed50caa2 100644
--- a/man7/gitrevisions.7
+++ b/man7/gitrevisions.7
@@ -2,12 +2,12 @@
.\" Title: gitrevisions
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITREVISIONS" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITREVISIONS" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man7/gitsubmodules.7 b/man7/gitsubmodules.7
index 4fc0bc452..c9e09adb4 100644
--- a/man7/gitsubmodules.7
+++ b/man7/gitsubmodules.7
@@ -2,12 +2,12 @@
.\" Title: gitsubmodules
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITSUBMODULES" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITSUBMODULES" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
diff --git a/man7/gittutorial-2.7 b/man7/gittutorial-2.7
index 7e1af793b..0c14a4271 100644
--- a/man7/gittutorial-2.7
+++ b/man7/gittutorial-2.7
@@ -2,12 +2,12 @@
.\" Title: gittutorial-2
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITTUTORIAL\-2" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITTUTORIAL\-2" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -52,13 +52,13 @@ $ mkdir test\-project
$ cd test\-project
$ git init
Initialized empty Git repository in \&.git/
-$ echo \(aqhello world\(aq > file\&.txt
+$ echo \*(Aqhello world\*(Aq > file\&.txt
$ git add \&.
$ git commit \-a \-m "initial commit"
[master (root\-commit) 54196cc] initial commit
1 file changed, 1 insertion(+)
create mode 100644 file\&.txt
-$ echo \(aqhello world!\(aq >file\&.txt
+$ echo \*(Aqhello world!\*(Aq >file\&.txt
$ git commit \-a \-m "add emphasis"
[master c4d59f3] add emphasis
1 file changed, 1 insertion(+), 1 deletion(\-)
@@ -389,7 +389,7 @@ So what our \fIgit add\fR did was store a new blob and then put a reference to i
.RS 4
.\}
.nf
-$ echo \(aqagain?\(aq >>file\&.txt
+$ echo \*(Aqagain?\*(Aq >>file\&.txt
$ git diff
index 513feba\&.\&.ba3da7b 100644
\-\-\- a/file\&.txt
diff --git a/man7/gittutorial.7 b/man7/gittutorial.7
index db04b1f89..b2c681d67 100644
--- a/man7/gittutorial.7
+++ b/man7/gittutorial.7
@@ -2,12 +2,12 @@
.\" Title: gittutorial
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITTUTORIAL" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITTUTORIAL" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -178,7 +178,7 @@ $ git diff \-\-cached
$ git status
On branch master
Changes to be committed:
-Your branch is up to date with \(aqorigin/master\(aq\&.
+Your branch is up to date with \*(Aqorigin/master\*(Aq\&.
(use "git restore \-\-staged <file>\&.\&.\&." to unstage)
modified: file1
diff --git a/man7/gitworkflows.7 b/man7/gitworkflows.7
index 323428343..69a70d21d 100644
--- a/man7/gitworkflows.7
+++ b/man7/gitworkflows.7
@@ -2,12 +2,12 @@
.\" Title: gitworkflows
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GITWORKFLOWS" "7" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GITWORKFLOWS" "7" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------