Lines Matching refs:run
77 $repo->run('init');
137 $this->run('init');
155 if ($_init) $this->run('init');
273 public function run($command) function in woolfg\\dokuwiki\\plugin\\gitbacked\\GitRepo
356 $msg = $this->run("status");
377 return $this->run("add $files -v");
395 return $this->run("rm " . ($cached ? '--cached ' : '') . $files);
414 return $this->run("commit --allow-empty " . $flags . " --file=" . $msgfile);
432 return $this->run("clone --local " . $this->repo_path . " $target");
447 return $this->run("clone --local $source " . $this->repo_path);
463 return $this->run("clone $reference $source " . $this->repo_path);
478 return $this->run("clean" . (($force) ? " -f" : "") . (($dirs) ? " -d" : ""));
492 return $this->run("branch $branch");
506 return $this->run("branch " . (($force) ? '-D' : '-d') . " $branch");
518 $branchArray = explode("\n", $this->run("branch"));
541 $branchArray = explode("\n", $this->run("branch -r"));
581 return $this->run("checkout $branch");
596 return $this->run("merge $branch --no-ff");
608 return $this->run("fetch");
627 return $this->run("tag -a $tag --file=" . $msgfile);
644 $tagArray = explode("\n", $this->run("tag -l $pattern"));
666 return $this->run("push --tags $remote $branch");
680 return $this->run("pull $remote $branch");
692 return $this->run('log');
694 return $this->run('log --pretty=format:"' . $format . '"');