summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-02-25 07:48:12 +0100
committerSebastian Thiel <byronimo@gmail.com>2016-02-25 07:48:12 +0100
commit0f4d5ce5f9459e4c7fe4fab95df1a1e4c9be61ca (patch)
tree25c209cfcbc42b01622b17479399ddb8a7792996 /git/cmd.py
parent8e9481b4ddd70cf44ad041fba771ca5c02b84cf7 (diff)
parent5982ff789e731c1cbd9b05d1c6826adf0cd8080b (diff)
downloadgitpython-0f4d5ce5f9459e4c7fe4fab95df1a1e4c9be61ca.tar.gz
Merge pull request #389 from csnover/csnover-buffer-reads
fix(cmd): Use buffered reads
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/git/cmd.py b/git/cmd.py
index c99c04e2..2f900ae2 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -605,6 +605,7 @@ class Git(LazyMixin):
proc = Popen(command,
env=env,
cwd=cwd,
+ bufsize=-1,
stdin=istream,
stderr=PIPE,
stdout=with_stdout and PIPE or None,