summaryrefslogtreecommitdiffstats
path: root/man1/git-for-each-ref.1
diff options
context:
space:
mode:
Diffstat (limited to 'man1/git-for-each-ref.1')
-rw-r--r--man1/git-for-each-ref.120
1 files changed, 10 insertions, 10 deletions
diff --git a/man1/git-for-each-ref.1 b/man1/git-for-each-ref.1
index 57db732f3..7d8fc464d 100644
--- a/man1/git-for-each-ref.1
+++ b/man1/git-for-each-ref.1
@@ -2,12 +2,12 @@
.\" Title: git-for-each-ref
.\" 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\-FOR\-EACH\-REF" "1" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GIT\-FOR\-EACH\-REF" "1" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -282,7 +282,7 @@ ref is configured\&.
HEAD
.RS 4
\fI*\fR
-if HEAD matches current ref (the checked out branch), \(aq \(aq otherwise\&.
+if HEAD matches current ref (the checked out branch), \*(Aq \*(Aq otherwise\&.
.RE
.PP
color
@@ -409,14 +409,14 @@ An example directly producing formatted text\&. Show the most recent 3 tagged co
.nf
#!/bin/sh
-git for\-each\-ref \-\-count=3 \-\-sort=\(aq\-*authordate\(aq \e
-\-\-format=\(aqFrom: %(*authorname) %(*authoremail)
+git for\-each\-ref \-\-count=3 \-\-sort=\*(Aq\-*authordate\*(Aq \e
+\-\-format=\*(AqFrom: %(*authorname) %(*authoremail)
Subject: %(*subject)
Date: %(*authordate)
Ref: %(*refname)
%(*body)
-\(aq \(aqrefs/tags\(aq
+\*(Aq \*(Aqrefs/tags\*(Aq
.fi
.if n \{\
.RE
@@ -451,7 +451,7 @@ A bit more elaborate report on tags, demonstrating that the format may be an ent
.nf
#!/bin/sh
-fmt=\(aq
+fmt=\*(Aq
r=%(refname)
t=%(*objecttype)
T=${r#refs/tags/}
@@ -489,10 +489,10 @@ Its message reads as:
echo "$b" | sed \-e "s/^/ /"
echo
fi
-\(aq
+\*(Aq
eval=`git for\-each\-ref \-\-shell \-\-format="$fmt" \e
- \-\-sort=\(aq*objecttype\(aq \e
+ \-\-sort=\*(Aq*objecttype\*(Aq \e
\-\-sort=\-taggerdate \e
refs/tags`
eval "$eval"