== Win32mbcs Extension == '''This extension is currently being distributed along with Mercurial.''' ''Author: Shun-ichi Goto'' === Overview === There is a well known issue "0x5c problem" on Windows related to the incorrect handling of path names that are raw encoded using byte sequences of "problematic" encodings like shift_jis or big5. The primary intent of this extension is to allow using such a encoding on Mercurial without strange file operation errors. The encoding used for filenames is the same as the one used for the terminal by default. You can change the encoding by setting the {{{HGENCODING}}} environment variable. This may be needed if the required encoding doesn't match with the system local encoding, which is used as default. This extension is usefull for: * Japanese Windows users using shift_jis encoding. * Chinese Windows users using big5 encoding. * Users who want to use a repository created with such a encoding. Note: Unix people don't need to use this extension. === Configuration === Enable the extension in the configuration file (hgrc): {{{ [extensions] hgext.win32mbcs= }}} === Usage === This extension doesn't require user interaction to work. ---- CategoryWindows CategoryBundledExtension