summaryrefslogtreecommitdiffstats
path: root/man7/gittutorial-2.7
diff options
context:
space:
mode:
Diffstat (limited to 'man7/gittutorial-2.7')
-rw-r--r--man7/gittutorial-2.712
1 files changed, 6 insertions, 6 deletions
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