我想知道是否有人知道Symfony正确的插件/捆绑包来展示你的Git Pushes / Commits? 我在问之前尝试了一些,但没有找到我想要的东西,只是一个简单的插件/包来显示你的Git信息。
提前致谢! :)
答案 0 :(得分:0)
检查GitElephantBundle和GitElephant 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);