but report on umlaut handling
This commit is contained in:
parent
eedebb0057
commit
61b7f3dea3
1 changed files with 20 additions and 0 deletions
20
doc/bugs/problems_with_utf8_names.mdwn
Normal file
20
doc/bugs/problems_with_utf8_names.mdwn
Normal file
|
@ -0,0 +1,20 @@
|
|||
There are problems with displaying filenames in UTF8 encoding, as shown here:
|
||||
|
||||
$ echo $LANG
|
||||
en_GB.UTF-8
|
||||
$ git init
|
||||
$ git annex init test
|
||||
[...]
|
||||
$ touch "Umlaut Ü.txt"
|
||||
$ git annex add Uml*
|
||||
add Umlaut Ã.txt ok
|
||||
(Recording state in git...)
|
||||
$ find -name U\* | hexdump -C
|
||||
00000000 2e 2f 55 6d 6c 61 75 74 20 c3 9c 2e 74 78 74 0a |./Umlaut ...txt.|
|
||||
00000010
|
||||
$ git annex find | hexdump -C
|
||||
00000000 55 6d 6c 61 75 74 20 c3 83 c2 9c 2e 74 78 74 0a |Umlaut .....txt.|
|
||||
00000010
|
||||
$
|
||||
|
||||
It looks like the common latin1-to-UTF8 encoding. Functionality other than otuput seems not to be affected.
|
Loading…
Reference in a new issue