setName('git-receive-pack'); $this->setArguments( array( array( 'name' => 'dir', 'wildcard' => true, ), )); } public function isReadOnly() { return false; } public function getRequestPath() { $args = $this->getArgs(); return head($args->getArg('dir')); } protected function executeRepositoryOperations( PhabricatorRepository $repository) { $future = new ExecFuture( 'git-receive-pack %s', $repository->getLocalPath()); return $this->passthruIO($future); } }