Skip to content

Commit 619ef64

Browse files
committed
Merge branch 'mk/asciidoctor-bq-workaround'
* mk/asciidoctor-bq-workaround: Documentation: remove unnecessary backslashes
2 parents da94a08 + c200deb commit 619ef64

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Documentation/revisions.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@ some output processing may assume ref names in UTF-8.
6161
'@'::
6262
'@' alone is a shortcut for 'HEAD'.
6363

64-
'<refname>@\{<date>\}', e.g. 'master@\{yesterday\}', 'HEAD@\{5 minutes ago\}'::
64+
'<refname>@{<date>}', e.g. 'master@\{yesterday\}', 'HEAD@{5 minutes ago}'::
6565
A ref followed by the suffix '@' with a date specification
6666
enclosed in a brace
67-
pair (e.g. '\{yesterday\}', '\{1 month 2 weeks 3 days 1 hour 1
68-
second ago\}' or '\{1979-02-26 18:30:00\}') specifies the value
67+
pair (e.g. '\{yesterday\}', '{1 month 2 weeks 3 days 1 hour 1
68+
second ago}' or '{1979-02-26 18:30:00}') specifies the value
6969
of the ref at a prior point in time. This suffix may only be
7070
used immediately following a ref name and the ref must have an
7171
existing log ('$GIT_DIR/logs/<ref>'). Note that this looks up the state
7272
of your *local* ref at a given time; e.g., what was in your local
7373
'master' branch last week. If you want to look at commits made during
7474
certain times, see '--since' and '--until'.
7575

76-
'<refname>@\{<n>\}', e.g. 'master@\{1\}'::
76+
'<refname>@{<n>}', e.g. 'master@\{1\}'::
7777
A ref followed by the suffix '@' with an ordinal specification
7878
enclosed in a brace pair (e.g. '\{1\}', '\{15\}') specifies
7979
the n-th prior value of that ref. For example 'master@\{1\}'
@@ -82,13 +82,13 @@ some output processing may assume ref names in UTF-8.
8282
immediately following a ref name and the ref must have an existing
8383
log ('$GIT_DIR/logs/<refname>').
8484

85-
'@\{<n>\}', e.g. '@\{1\}'::
85+
'@{<n>}', e.g. '@\{1\}'::
8686
You can use the '@' construct with an empty ref part to get at a
8787
reflog entry of the current branch. For example, if you are on
8888
branch 'blabla' then '@\{1\}' means the same as 'blabla@\{1\}'.
8989

90-
'@\{-<n>\}', e.g. '@\{-1\}'::
91-
The construct '@\{-<n>\}' means the <n>th branch/commit checked out
90+
'@{-<n>}', e.g. '@{-1}'::
91+
The construct '@{-<n>}' means the <n>th branch/commit checked out
9292
before the current one.
9393

9494
'<branchname>@\{upstream\}', e.g. 'master@\{upstream\}', '@\{u\}'::
@@ -139,7 +139,7 @@ from one location and push to another. In a non-triangular workflow,
139139
'<rev>{caret}1{caret}1{caret}1'. See below for an illustration of
140140
the usage of this form.
141141

142-
'<rev>{caret}\{<type>\}', e.g. 'v0.99.8{caret}\{commit\}'::
142+
'<rev>{caret}{<type>}', e.g. 'v0.99.8{caret}\{commit\}'::
143143
A suffix '{caret}' followed by an object type name enclosed in
144144
brace pair means dereference the object at '<rev>' recursively until
145145
an object of type '<type>' is found or the object cannot be
@@ -159,13 +159,13 @@ it does not have to be dereferenced even once to get to an object.
159159
'rev{caret}\{tag\}' can be used to ensure that 'rev' identifies an
160160
existing tag object.
161161

162-
'<rev>{caret}\{\}', e.g. 'v0.99.8{caret}\{\}'::
162+
'<rev>{caret}{}', e.g. 'v0.99.8{caret}{}'::
163163
A suffix '{caret}' followed by an empty brace pair
164164
means the object could be a tag,
165165
and dereference the tag recursively until a non-tag object is
166166
found.
167167

168-
'<rev>{caret}\{/<text>\}', e.g. 'HEAD^{/fix nasty bug}'::
168+
'<rev>{caret}{/<text>}', e.g. 'HEAD^{/fix nasty bug}'::
169169
A suffix '{caret}' to a revision parameter, followed by a brace
170170
pair that contains a text led by a slash,
171171
is the same as the ':/fix nasty bug' syntax below except that

0 commit comments

Comments
 (0)