···7575limited set of supported platforms. Currently, this includes Windows
7676and MacOS.
7777+
7878- Otherwise, this variable contains the pathname of the "fsmonitor"
7979- hook command.
7878+Otherwise, this variable contains the pathname of the "fsmonitor"
7979+hook command.
8080+
8181This hook command is used to identify all files that may have changed
8282since the requested date/time. This information is used to speed up
+9-9
Documentation/git-config.adoc
···117117118118--comment <message>::
119119 Append a comment at the end of new or modified lines.
120120-121121- If _<message>_ begins with one or more whitespaces followed
122122- by "#", it is used as-is. If it begins with "#", a space is
123123- prepended before it is used. Otherwise, a string " # " (a
124124- space followed by a hash followed by a space) is prepended
125125- to it. And the resulting string is placed immediately after
126126- the value defined for the variable. The _<message>_ must
127127- not contain linefeed characters (no multi-line comments are
128128- permitted).
120120++
121121+If _<message>_ begins with one or more whitespaces followed
122122+by "#", it is used as-is. If it begins with "#", a space is
123123+prepended before it is used. Otherwise, a string " # " (a
124124+space followed by a hash followed by a space) is prepended
125125+to it. And the resulting string is placed immediately after
126126+the value defined for the variable. The _<message>_ must
127127+not contain linefeed characters (no multi-line comments are
128128+permitted).
129129130130--all::
131131 With `get`, return all values for a multi-valued key.
+7-7
Documentation/git-rev-parse.adoc
···174174175175 Allow oids to be input from any object format that the current
176176 repository supports.
177177-178178- Specifying "sha1" translates if necessary and returns a sha1 oid.
179179-180180- Specifying "sha256" translates if necessary and returns a sha256 oid.
181181-182182- Specifying "storage" translates if necessary and returns an oid in
183183- encoded in the storage hash algorithm.
177177++
178178+Specifying "sha1" translates if necessary and returns a sha1 oid.
179179++
180180+Specifying "sha256" translates if necessary and returns a sha256 oid.
181181++
182182+Specifying "storage" translates if necessary and returns an oid in
183183+encoded in the storage hash algorithm.
184184185185Options for Objects
186186~~~~~~~~~~~~~~~~~~~
+2-2
Documentation/git-shortlog.adoc
···4444 describe each commit. '<format>' can be any string accepted
4545 by the `--format` option of 'git log', such as '* [%h] %s'.
4646 (See the "PRETTY FORMATS" section of linkgit:git-log[1].)
4747-4848- Each pretty-printed commit will be rewrapped before it is shown.
4747++
4848+Each pretty-printed commit will be rewrapped before it is shown.
49495050--date=<format>::
5151 Show dates formatted according to the given date string. (See
+44-28
Documentation/git-sparse-checkout.adoc
···264264 inconsistent.
265265266266 * It has edge cases where the "right" behavior is unclear. Two examples:
267267-268268- First, two users are in a subdirectory, and the first runs
269269- git sparse-checkout set '/toplevel-dir/*.c'
270270- while the second runs
271271- git sparse-checkout set relative-dir
272272- Should those arguments be transliterated into
273273- current/subdirectory/toplevel-dir/*.c
274274- and
275275- current/subdirectory/relative-dir
276276- before inserting into the sparse-checkout file? The user who typed
277277- the first command is probably aware that arguments to set/add are
278278- supposed to be patterns in non-cone mode, and probably would not be
279279- happy with such a transliteration. However, many gitignore-style
280280- patterns are just paths, which might be what the user who typed the
281281- second command was thinking, and they'd be upset if their argument
282282- wasn't transliterated.
283283-284284- Second, what should bash-completion complete on for set/add commands
285285- for non-cone users? If it suggests paths, is it exacerbating the
286286- problem above? Also, if it suggests paths, what if the user has a
287287- file or directory that begins with either a '!' or '#' or has a '*',
288288- '\', '?', '[', or ']' in its name? And if it suggests paths, will
289289- it complete "/pro" to "/proc" (in the root filesystem) rather than to
290290- "/progress.txt" in the current directory? (Note that users are
291291- likely to want to start paths with a leading '/' in non-cone mode,
292292- for the same reason that .gitignore files often have one.)
293293- Completing on files or directories might give nasty surprises in
294294- all these cases.
267267++
268268+First, two users are in a subdirectory, and the first runs
269269++
270270+----
271271+git sparse-checkout set '/toplevel-dir/*.c'
272272+----
273273++
274274+while the second runs
275275++
276276+----
277277+git sparse-checkout set relative-dir
278278+----
279279++
280280+Should those arguments be transliterated into
281281++
282282+----
283283+current/subdirectory/toplevel-dir/*.c
284284+----
285285++
286286+and
287287++
288288+----
289289+current/subdirectory/relative-dir
290290+----
291291++
292292+before inserting into the sparse-checkout file? The user who typed
293293+the first command is probably aware that arguments to set/add are
294294+supposed to be patterns in non-cone mode, and probably would not be
295295+happy with such a transliteration. However, many gitignore-style
296296+patterns are just paths, which might be what the user who typed the
297297+second command was thinking, and they'd be upset if their argument
298298+wasn't transliterated.
299299++
300300+Second, what should bash-completion complete on for set/add commands
301301+for non-cone users? If it suggests paths, is it exacerbating the
302302+problem above? Also, if it suggests paths, what if the user has a
303303+file or directory that begins with either a '!' or '#' or has a '*',
304304+'\', '?', '[', or ']' in its name? And if it suggests paths, will
305305+it complete "/pro" to "/proc" (in the root filesystem) rather than to
306306+"/progress.txt" in the current directory? (Note that users are
307307+likely to want to start paths with a leading '/' in non-cone mode,
308308+for the same reason that .gitignore files often have one.)
309309+Completing on files or directories might give nasty surprises in
310310+all these cases.
295311296312 * The excessive flexibility made other extensions essentially
297313 impractical. `--sparse-index` is likely impossible in non-cone