mercurial/subrepo.py
changeset 28949 9d3e280864fb
parent 28670 ff0d3b6b287f
child 29021 92d37fb3f1aa
--- 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'