Start support for git aliases

This commit is contained in:
mcarton
2015-07-16 20:23:31 +02:00
parent 78769e4fbc
commit b3e09d68df
4 changed files with 32 additions and 3 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ def get_command(settings, args):
script = shells.from_shell(script)
logs.debug('Call: {}'.format(script), settings)
result = Popen(script, shell=True, stdout=PIPE, stderr=PIPE,
env=dict(os.environ, LANG='C'))
env=dict(os.environ, LANG='C', GIT_TRACE=1))
if wait_output(settings, result):
return types.Command(script, result.stdout.read().decode('utf-8'),
result.stderr.read().decode('utf-8'))