subrepo: disable localizations when calling Git (
issue5176)
Spotted by Aidar Sayfullin.
--- a/mercurial/subrepo.py Sat Apr 16 12:41:58 2016 +0530
+++ b/mercurial/subrepo.py Sat Apr 16 15:14:25 2016 -0500
@@ -1387,6 +1387,8 @@
self.ui.debug('%s: git %s\n' % (self._relpath, ' '.join(commands)))
if env is None:
env = os.environ.copy()
+ # disable localization for Git output (issue5176)
+ env['LC_ALL'] = 'C'
# fix for Git CVE-2015-7545
if 'GIT_ALLOW_PROTOCOL' not in env:
env['GIT_ALLOW_PROTOCOL'] = 'file:git:http:https:ssh'