Browse Source

Ignore gh-pages branches, fixes #3073

Jordi Boggiano 10 years ago
parent
commit
b7402c3b2d
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/Composer/Repository/Vcs/GitHubDriver.php

+ 5 - 1
src/Composer/Repository/Vcs/GitHubDriver.php

@@ -227,11 +227,15 @@ class GitHubDriver extends VcsDriver
             $this->branches = array();
             $resource = $this->getApiUrl() . '/repos/'.$this->owner.'/'.$this->repository.'/git/refs/heads?per_page=100';
 
+            $branchBlacklist = array('gh-pages');
+
             do {
                 $branchData = JsonFile::parseJson($this->getContents($resource), $resource);
                 foreach ($branchData as $branch) {
                     $name = substr($branch['ref'], 11);
-                    $this->branches[$name] = $branch['object']['sha'];
+                    if (!in_array($name, $branchBlacklist)) {
+                        $this->branches[$name] = $branch['object']['sha'];
+                    }
                 }
 
                 $resource = $this->getNextPage();