2016-03-23 9 views
1

Git Pushes/Commitsを表示するためにSymfonyのプラグイン/バンドルを知っている人がいるのだろうか? 私は尋ねる前に自分自身を試しましたが、私が探していたものを実際に見つけられませんでした。あなたのGit情報を表示するための単純なプラグイン/バンドルです。symfony - Git Pushes/htmlで情報をコミットする(プラグイン/バンドル)

ありがとうございます! :)

答えて

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); 
関連する問題