コード例 #1
0
ファイル: git.php プロジェクト: gpawlik/suited-php-classes
 /**
  * get tags for a system git repo
  * @return string $tags tags as a string
  */
 public static function getTagsInstall()
 {
     $command = "git tag -l";
     $ret = exec($command, $output);
     return common::parseShellArray($output);
 }