Hello everybody! I have a repository. Basic development is on Windows platform (under Cygwin). I have commit messages on Russian, so i18n.commitEncoding = i18n.logOutputtEncoding = cp1251. It's ok. I works fine on Windows. When I run on Windows git log --graph --oneline and git log --graph --pretty=format:'%C(yellow)%h %Creset%s' I get two identical outputs which look like * ae0a70f merge v2.6.54 into v3.0 |\ | * 581e071 + explicit changelog mail content-type (for claws-mail)... | * 9bafb65 fixed: changelog does not recognize Mantis... | * f417e91 fixed: #82 (Добавить в программу возможность... | * 8553efa fixed: #87 (2.6.53 Добавить для рассылки e-mail... .... But when I run the same commands (for the same repository and current commit, of course) on Linux machine (ru_RU.UTF-8 locale; Guake, xterm, gnome-terminal, etc ) I get different outputs git log --graph --oneline gives output identical to Windows (see above) but git log --graph --pretty=format:'%C(yellow)%h %Creset%s' gives * ae0a70f merge v2.6.54 into v3.0 |\ | * 581e071 + explicit changelog mail content-type (for claws-mail)... | * 9bafb65 fixed: changelog does not recognize Mantis... | * f417e91 fixed: #82 (<C4><EE><E1><E0><E2><E8><F2><FC>... | * 8553efa fixed: #87 (2.6.53<C4><EE><E1><E0><E2><E8><F2><FC>... i.e. non-UTF-8 characters are represented with their codes and not converted to UTF-8 as they are for "git log --graph --oneline" So, the question - why? I thought both commands use the same log output mechanism. As I can edit Git sources but I'm not familiar to C well, so one more question "Where exactly in sources to fix it fast?" Thanks -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html