diff options
author | http://christian.amsuess.com/chrysn <chrysn@web> | 2010-12-22 11:52:16 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2010-12-22 11:52:16 +0000 |
commit | 61b7f3dea3b54ead64cd5e957da28c83e7c25c85 (patch) | |
tree | ed8e064ef464e0e0539118e5e4e32121dc726f00 /doc | |
parent | eedebb0057b4d0fc7d0d13214d8f5e3890034374 (diff) |
but report on umlaut handling
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/problems_with_utf8_names.mdwn | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/bugs/problems_with_utf8_names.mdwn b/doc/bugs/problems_with_utf8_names.mdwn new file mode 100644 index 000000000..521f92405 --- /dev/null +++ b/doc/bugs/problems_with_utf8_names.mdwn @@ -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. |