-
-
Save TomA-R/7016578 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
chdir('..'); | |
$output = array(); | |
exec('git log -15 --pretty=format:"%ad %an %s" --abbrev-commit --date=short', $output); | |
$history = array(); | |
foreach ($output as $line) { | |
$commit = array(); | |
list($commit['date'], $commit['author'], $commit['subject']) = explode("\t", $line); | |
$history[] = $commit; | |
} | |
print_r($history); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment