Symfony - 显示Git推送/提交html信息(插件/包)

时间:2016-03-23 00:08:12

标签: git symfony push commit

我想知道是否有人知道Symfony正确的插件/捆绑包来展示你的Git Pushes / Commits? 我在问之前尝试了一些,但没有找到我想要的东西,只是一个简单的插件/包来显示你的Git信息。

提前致谢! :)

1 个答案:

答案 0 :(得分:0)

检查GitElephantBundleGitElephant library

使用示例:

// Log contains a collection of commit objects
// syntax: getLog(<tree-ish>, path = null, limit = 15, offset = null)
$log = $repo->getLog();
$log = $repo->getLog('master', null, 5);
$log = $repo->getLog('v0.1', null, 5, 10);
// or directly create a log object
$log = new Log($repo);
$log = new Log($repo, 'v0.1', null, 5, 10);