summaryrefslogtreecommitdiffstats
path: root/man1/git-blame.1
diff options
context:
space:
mode:
Diffstat (limited to 'man1/git-blame.1')
-rw-r--r--man1/git-blame.112
1 files changed, 6 insertions, 6 deletions
diff --git a/man1/git-blame.1 b/man1/git-blame.1
index 0ed165cac..20f8b9fcc 100644
--- a/man1/git-blame.1
+++ b/man1/git-blame.1
@@ -2,12 +2,12 @@
.\" Title: git-blame
.\" 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 "GIT\-BLAME" "1" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GIT\-BLAME" "1" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -55,7 +55,7 @@ Apart from supporting file annotation, Git also supports searching the developme
.RS 4
.\}
.nf
-$ git log \-\-pretty=oneline \-S\(aqblame_usage\(aq
+$ git log \-\-pretty=oneline \-S\*(Aqblame_usage\*(Aq
5040f17eba15504bad66b14a645bddd9b015ebb7 blame \-S <ancestry\-file>
ea4c7f9bf69e781dd0cd88d2bccb2bf5cc15c9a7 git\-blame: Make the output
.fi
@@ -506,7 +506,7 @@ The porcelain format generally suppresses commit information that has already be
.nf
# count the number of lines attributed to each author
git blame \-\-line\-porcelain file |
-sed \-n \(aqs/^author //p\(aq |
+sed \-n \*(Aqs/^author //p\*(Aq |
sort | uniq \-c | sort \-rn
.fi
.if n \{\
@@ -535,7 +535,7 @@ Also you can use a regular expression to specify the line range:
.RS 4
.\}
.nf
-git blame \-L \(aq/^sub hello {/,/^}$/\(aq foo
+git blame \-L \*(Aq/^sub hello {/,/^}$/\*(Aq foo
.fi
.if n \{\
.RE