-1

我想用shell_exec创建 Git 分支(修补程序/功能)时间戳。

我在下面尝试过,

shell_exec("git show --summary `git merge-base your_branch master`");

但它显示null

有谁知道如何用 php 获取它?

4

1 回答 1

0

您使用了正确的命令来获取 commit-hash ( git merge-base),但是git show --summary对于分支点来说是该死的谵妄

git show -s --format=%ci <...>

或其他时间戳表示的其他格式

于 2019-08-14T06:12:49.680 回答