diff options
author | Shawn O. Pearce <sop@google.com> | 2009-04-10 16:20:25 -0700 |
---|---|---|
committer | Shawn O. Pearce <sop@google.com> | 2009-04-10 16:20:25 -0700 |
commit | 2675c3f8b5865edff4fe6ec60187b32deef5041d (patch) | |
tree | cd3f050529425d0fbe89a4dd5eee0d0b15881bc8 /project.py | |
parent | 27b07327bc9f4bcda2c29422e064bced092759e3 (diff) | |
download | git-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>
Diffstat (limited to 'project.py')
-rw-r--r-- | project.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |