Merge branch 'jr/gitignore-doc-example-markup'

Doc update.

* jr/gitignore-doc-example-markup:
  gitignore.txt: use backticks instead of double quotes
This commit is contained in:
Junio C Hamano 2023-07-26 14:13:15 -07:00
commit 89672f14d5

View file

@ -174,10 +174,10 @@ EXAMPLES
is not relevant if there is already a middle slash in
the pattern.
- The pattern "foo/*", matches "foo/test.json"
(a regular file), "foo/bar" (a directory), but it does not match
"foo/bar/hello.c" (a regular file), as the asterisk in the
pattern does not match "bar/hello.c" which has a slash in it.
- The pattern `foo/*`, matches `foo/test.json`
(a regular file), `foo/bar` (a directory), but it does not match
`foo/bar/hello.c` (a regular file), as the asterisk in the
pattern does not match `bar/hello.c` which has a slash in it.
--------------------------------------------------------------
$ git status