我想在我的网站上显示 Git 版本。
如何显示来自 Git 的语义版本号,以便网站的非技术用户在提出问题时可以轻松参考?
首先,一些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)
要点: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;
}
}
如果您不想这样做exec()
并且您正在使用 git 轻量级(请参阅下面的评论)标记:
.git/HEAD
您可以从或获取当前的 HEAD 提交哈希.git/refs/heads/master
。然后我们循环查找匹配。首先反转阵列以提高速度,因为您更有可能使用更高的最近标记。
因此,如果当前的 php 文件位于文件夹下一层的public_html
or文件夹中...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';
简单的方法:
$rev = exec('git rev-parse --short HEAD');
$rev = exec('git rev-parse HEAD');
我这样做了:
substr(file_get_contents(GIT_DIR.'/refs/heads/master'),0,7)
资源友好,与我在 Eclipse 下显示的一样
在终端中运行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)。所有其他字段都用于按其字节值顺序排序。