Lines Matching refs:pipe
63 pipe = [LogCmd('@{upstream}..', oneline=True),
65 stdout = command.RunPipe(pipe, capture=True, oneline=True).stdout
78 pipe = ['git', 'name-rev', commit_hash]
79 stdout = command.RunPipe([pipe], capture=True, oneline=True).stdout
101 pipe = [LogCmd(branch, git_dir=git_dir, oneline=True, count=100)]
102 result = command.RunPipe(pipe, capture=True, capture_stderr=True,
172 pipe = [LogCmd(range_expr, git_dir=git_dir, oneline=True)]
173 result = command.RunPipe(pipe, capture=True, capture_stderr=True,
203 pipe = [LogCmd(commit_range, oneline=True),
205 stdout = command.RunPipe(pipe, capture=True, oneline=True).stdout
215 pipe = ['git']
217 pipe.extend(['--git-dir', git_dir])
219 pipe.extend(['--work-tree', work_tree])
220 pipe.append('checkout')
222 pipe.append('-f')
223 pipe.append(commit_hash)
224 result = command.RunPipe([pipe], capture=True, raise_on_error=False,
227 raise OSError('git checkout (%s): %s' % (pipe, result.stderr))
235 pipe = ['git', 'clone', git_dir, '.']
236 result = command.RunPipe([pipe], capture=True, cwd=output_dir,
247 pipe = ['git']
249 pipe.extend(['--git-dir', git_dir])
251 pipe.extend(['--work-tree', work_tree])
252 pipe.append('fetch')
253 result = command.RunPipe([pipe], capture=True, capture_stderr=True)