mirror of
https://github.com/git/git
synced 2024-11-04 16:17:49 +00:00
Merge branch 'rs/doc-ls-tree-hex-literal'
Doc update. * rs/doc-ls-tree-hex-literal: ls-tree: fix documentation of %x format placeholder
This commit is contained in:
commit
e0e8a2dfa0
1 changed files with 3 additions and 3 deletions
|
@ -86,9 +86,9 @@ OPTIONS
|
|||
--format=<format>::
|
||||
A string that interpolates `%(fieldname)` from the result
|
||||
being shown. It also interpolates `%%` to `%`, and
|
||||
`%xx` where `xx` are hex digits interpolates to character
|
||||
with hex code `xx`; for example `%00` interpolates to
|
||||
`\0` (NUL), `%09` to `\t` (TAB) and `%0a` to `\n` (LF).
|
||||
`%xNN` where `NN` are hex digits interpolates to character
|
||||
with hex code `NN`; for example `%x00` interpolates to
|
||||
`\0` (NUL), `%x09` to `\t` (TAB) and `%x0a` to `\n` (LF).
|
||||
When specified, `--format` cannot be combined with other
|
||||
format-altering options, including `--long`, `--name-only`
|
||||
and `--object-only`.
|
||||
|
|
Loading…
Reference in a new issue