##// END OF EJS Templates
help: fix bytes/digit confusion for hashes...
Matt Mackall -
r11718:3e979f47 default
parent child Browse files
Show More
@@ -1460,11 +1460,11 b' def export(ui, repo, *changesets, **opts'
1460 1460 given using a format string. The formatting rules are as follows:
1461 1461
1462 1462 :``%%``: literal "%" character
1463 :``%H``: changeset hash (40 bytes of hexadecimal)
1463 :``%H``: changeset hash (40 hexadecimal digits)
1464 1464 :``%N``: number of patches being generated
1465 1465 :``%R``: changeset revision number
1466 1466 :``%b``: basename of the exporting repository
1467 :``%h``: short-form changeset hash (12 bytes of hexadecimal)
1467 :``%h``: short-form changeset hash (12 hexadecimal digits)
1468 1468 :``%n``: zero-padded sequence number, starting at 1
1469 1469 :``%r``: zero-padded changeset revision number
1470 1470
@@ -83,8 +83,8 b' Changeset, child'
83 83
84 84 Changeset id
85 85 A SHA-1 hash that uniquely identifies a changeset. It may be
86 represented as either a "long" 40-byte hexadecimal string, or a
87 "short" 12-byte hexadecimal string.
86 represented as either a "long" 40 hexadecimal digit string, or a
87 "short" 12 hexadecimal digit string.
88 88
89 89 Changeset, merge
90 90 A changeset with two parents. This occurs when a merge is
@@ -52,8 +52,8 b' keywords are usually available for templ'
52 52
53 53 :file_dels: List of strings. Files removed by this changeset.
54 54
55 :node: String. The changeset identification hash, as a 40-character
56 hexadecimal string.
55 :node: String. The changeset identification hash, as a 40 hexadecimal
56 digit string.
57 57
58 58 :parents: List of strings. The parents of the changeset.
59 59
@@ -138,7 +138,7 b' List of filters:'
138 138 specified in RFC 3339: "2009-08-18T13:00:13+02:00".
139 139
140 140 :short: Changeset hash. Returns the short form of a changeset hash,
141 i.e. a 12-byte hexadecimal string.
141 i.e. a 12 hexadecimal digit string.
142 142
143 143 :shortdate: Date. Returns a date like "2006-09-18".
144 144
General Comments 0
You need to be logged in to leave comments. Login now