filesystem_paths=$( | |
find . \ | |
-name "*.php" \ | |
-not -name "*Test.php" | |
) | |
git log \ | |
--since='3 weeks ago' \ | |
--format='%ad' \ | |
--date=iso-local \ | |
$filesystem_paths \ | |
| cut -d ' ' -f1 \ | |
| sort \ | |
| uniq -c | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment