doc: fix hex code escapes in git-ls-filesjr/ls-files-expand-literal-doc
commitc1997074966a9eee7354bd3310048660a6287570
authorJayson Rhynas <jayrhynas@gmail.com>
Fri, 26 Jul 2024 15:41:40 +0000 (26 11:41 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 26 Jul 2024 17:53:21 +0000 (26 10:53 -0700)
tree4673b96ade567999a8744fcf8e95259bce19a1c1
parentad57f148c6b5f8735b62238dda8f571c582e0e54
doc: fix hex code escapes in git-ls-files

The --format option on the git-ls-files man page states that `%xx`
interpolates to the character with hex code `xx`. This mirrors the
documentation and behavior of `git for-each-ref --format=...`. However,
in reality it requires the character with code `XX` to be specified as
`%xXX`, mirroring the behaviour of  `git log --format`.

Signed-off-by: Jayson Rhynas <jayrhynas@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-ls-files.txt