2016-03-23 6 views

Antwort

0

Überprüfen Sie GitElephantBundle und GitElephant library.

Beispiel Nutzung:

// 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); 
Verwandte Themen