Am 01.12.2012 11:07, schrieb
pimpo...@gmail.com:
> You can write this in command line:
> git config --global i18n.commitencondig UTF-8
>
> This is working for me.
Perhaps you are misunderstanding the purpose of the configuration. It
does *not* mean
"I want the commit message to be encoded in xyz."
It rather means
"The text that I feed as commit message is encoded in xyz."
Therefore, I think that the correct setting would be
git config i18n.commitencoding cp936
When you change your editor to produce UTF-8 commit messages, then you
would have to adjust this configuration accordingly.
-- Hannes