We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88e4c31 commit 1ef8d5fCopy full SHA for 1ef8d5f
src/Gitonomy/Git/ReferenceBag.php
@@ -366,6 +366,8 @@ protected function initialize()
366
} elseif ($fullname === 'refs/stash') {
367
$reference = new Stash($this->repository, $fullname, $commitHash);
368
$this->references[$fullname] = $reference;
369
+ } elseif (preg_match('#^refs/pull/(.*)$#', $fullname)) {
370
+ // Do nothing here
371
} else {
372
throw new \RuntimeException(sprintf('Unable to parse "%s"', $fullname));
373
}
0 commit comments