summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2009-04-10 16:20:25 -0700
committerShawn O. Pearce <sop@google.com>2009-04-10 16:20:25 -0700
commit2675c3f8b5865edff4fe6ec60187b32deef5041d (patch)
treecd3f050529425d0fbe89a4dd5eee0d0b15881bc8
parent27b07327bc9f4bcda2c29422e064bced092759e3 (diff)
downloadgit-repo-2675c3f8b5865edff4fe6ec60187b32deef5041d.tar.gz
Don't capture stdout during 'repo checkout'
There isn't any great value in buffering stdout into memory coming from git checkout. So don't bother doing it. Signed-off-by: Shawn O. Pearce <sop@google.com>
-rw-r--r--project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project.py b/project.py
index 4f560bd6..48ab8475 100644
--- a/project.py
+++ b/project.py
@@ -771,7 +771,7 @@ class Project(object):
771 771
772 # Do the checkout 772 # Do the checkout
773 cmd = ['checkout', name, '--'] 773 cmd = ['checkout', name, '--']
774 return GitCommand(self, cmd, capture_stdout=True).Wait() == 0 774 return GitCommand(self, cmd).Wait() == 0
775 775
776 def AbandonBranch(self, name): 776 def AbandonBranch(self, name):
777 """Destroy a local topic branch. 777 """Destroy a local topic branch.