Lines Matching refs:cmd
290 $cmd = 'show '.$branch.':'.$filename;
293 return $this->run($cmd);
388 $cmd = "gc";
389 $fullcmd = "cd \"".$this->repo_path."\" && ".$this->git_path." ".$cmd;
392 $cmd = "prune";
393 $fullcmd = "cd \"".$this->repo_path."\" && ".$this->git_path." ".$cmd;
396 $cmd = "add . -A";
397 $fullcmd = "cd \"".$this->repo_path."\" && ".$this->git_path." ".$cmd;
400 $cmd = "commit -a -m \"".$message."\"";
401 $fullcmd = "cd \"".$this->repo_path."\" && ".$this->git_path." ".$cmd;
440 $cmd = "clone -q $source \"".$this->repo_path."\"";
441 $fullcmd = "cd \"".$this->repo_path."\" && ".$this->git_path." ".$cmd;
639 $cmd = 'push';
640 return $this->run($cmd);