Changeset View
Changeset View
Standalone View
Standalone View
src/repository/graph/query/ArcanistGitCommitGraphQuery.php
| Show First 20 Lines • Show All 78 Lines • ▼ Show 20 Lines | foreach ($ref_lists as $ref_list) { | ||||
| '%P', | '%P', | ||||
| '%ct', | '%ct', | ||||
| '%B', | '%B', | ||||
| ); | ); | ||||
| $format = implode('%x02', $fields).'%x01'; | $format = implode('%x02', $fields).'%x01'; | ||||
| $future = $api->newFuture( | $future = $api->newFuture( | ||||
| 'log --format=%s %Ls --stdin', | 'log --format=%s %Ls --stdin --', | ||||
| $format, | $format, | ||||
| $flags); | $flags); | ||||
| $future->write($ref_blob); | $future->write($ref_blob); | ||||
| $future->setResolveOnError(true); | $future->setResolveOnError(true); | ||||
| $this->futures[] = $future; | $this->futures[] = $future; | ||||
| } | } | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 114 Lines • Show Last 20 Lines | |||||