Skip to content

Instantly share code, notes, and snippets.

View nathan815's full-sized avatar

Nathan Johnson nathan815

View GitHub Profile
<?php
// Author: Ngo Minh Nam
$dir = "/path/to/your/repo/";
$output = array();
chdir($dir);
exec("git log",$output);
$history = array();
foreach($output as $line){
if(strpos($line, 'commit')===0){