Lines Matching refs:repo
63 $repo = new GitRepo($repoPath, $this, true, true);
79 return $repo;
107 $repo = $this->initRepo();
110 $repo->add($filePath);
111 $repo->commit($message);
115 $repo->push('origin', $repo->activeBranch());
186 $repo = $this->initRepo();
191 $revBefore = $repo->run('rev-parse HEAD');
195 $repo->pull('origin', $repo->activeBranch());
199 $revAfter = $repo->run('rev-parse HEAD');
203 … $changedFilesPage = $repo->run('diff --name-only ' . $revBefore . ' ' . $revAfter);