24

我想在我的网站上显示 Git 版本。

如何显示来自 Git 的语义版本号,以便网站的非技术用户在提出问题时可以轻松参考?

4

6 回答 6

56

首先,一些git获取版本信息的命令:

  • 提交哈希长
    • git log --pretty="%H" -n1 HEAD
  • 提交哈希短
    • git log --pretty="%h" -n1 HEAD
  • 提交日期
    • git log --pretty="%ci" -n1 HEAD
  • 标签
    • git describe --tags --abbrev=0
  • 用哈希标记长
    • git describe --tags

其次,exec()结合使用您从上面选择的 git 命令来构建版本标识符:

class ApplicationVersion
{
    const MAJOR = 1;
    const MINOR = 2;
    const PATCH = 3;

    public static function get()
    {
        $commitHash = trim(exec('git log --pretty="%h" -n1 HEAD'));

        $commitDate = new \DateTime(trim(exec('git log -n1 --pretty=%ci HEAD')));
        $commitDate->setTimezone(new \DateTimeZone('UTC'));

        return sprintf('v%s.%s.%s-dev.%s (%s)', self::MAJOR, self::MINOR, self::PATCH, $commitHash, $commitDate->format('Y-m-d H:i:s'));
    }
}

// Usage: echo 'MyApplication ' . ApplicationVersion::get();

// MyApplication v1.2.3-dev.b576fd7 (2016-11-02 14:11:22)
于 2015-11-29T18:31:52.947 回答
14

要点:https ://gist.github.com/lukeoliff/5501074

<?php

class QuickGit {

  public static function version() {
    exec('git describe --always',$version_mini_hash);
    exec('git rev-list HEAD | wc -l',$version_number);
    exec('git log -1',$line);
    $version['short'] = "v1.".trim($version_number[0]).".".$version_mini_hash[0];
    $version['full'] = "v1.".trim($version_number[0]).".$version_mini_hash[0] (".str_replace('commit ','',$line[0]).")";
    return $version;
  }

}
于 2013-05-03T10:28:54.830 回答
13

如果您不想这样做exec()并且您正在使用 git 轻量级(请参阅下面的评论)标记:

.git/HEAD您可以从或获取当前的 HEAD 提交哈希.git/refs/heads/master。然后我们循环查找匹配。首先反转阵列以提高速度,因为您更有可能使用更高的最近标记。

因此,如果当前的 php 文件位于文件夹下一层的public_htmlor文件夹中...www.git

<?php

$HEAD_hash = file_get_contents('../.git/refs/heads/master'); // or branch x

$files = glob('../.git/refs/tags/*');
foreach(array_reverse($files) as $file) {
    $contents = trim(file_get_contents($file));

    if($HEAD_hash === $contents)
    {
        print 'Current tag is ' . basename($file);
        exit;
    }
}

print 'No matching tag';
于 2018-04-02T21:37:00.590 回答
3

简单的方法:

  • 短哈希$rev = exec('git rev-parse --short HEAD');
  • 完整哈希$rev = exec('git rev-parse HEAD');
于 2016-07-29T02:29:24.863 回答
3

我这样做了:

substr(file_get_contents(GIT_DIR.'/refs/heads/master'),0,7)

资源友好,与我在 Eclipse 下显示的一样

于 2018-11-01T13:46:31.667 回答
0

在终端中运行git tag以预览您的标签并说您得到了 ie:

v1.0.0
v1.1.0
v1.2.4

这是获取最新版本的方法 v1.2.4

function getVersion() {
  $hash = exec("git rev-list --tags --max-count=1");
  return exec("git describe --tags $hash"); 
}
echo getVersion(); // "v1.2.4"

巧合的是(如果您的标签是有序的),因为exec只返回我们可以做的最后一行:

function getVersion() {
  return exec("git tag");
}
echo getVersion(); // "v1.2.4"

要获取所有行字符串,请使用shell_exec

function getVersions() {
  return shell_exec("git tag");
}
echo getVersions(); // "v1.0.0
                    // v1.1.0
                    // v1.2.4"

要获取数组:

$tagsArray = explode(PHP_EOL, shell_exec("git tag"));

按日期对标签进行排序:

git tag --sort=committerdate

文档:git-for-each-ref#_field_names

出于排序目的,具有数值的字段按数字顺序排序(objectsize、authordate、committerdate、creatordate、taggerdate)。所有其他字段都用于按其字节值顺序排序。

于 2020-11-22T17:11:18.983 回答