create($bare); } /** * Opens a repository at the specified path * * @param string $path Path where the repository is located * @return Repository Instance of Repository */ public function getRepository($path) { if (!file_exists($path) || !file_exists($path . '/.git/HEAD') && !file_exists($path . '/HEAD')) { throw new \RuntimeException('There is no GIT repository at ' . $path); } if (in_array($path, $this->getHidden())) { throw new \RuntimeException('You don\'t have access to this repository'); } return new Repository($path, $this); } }