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
# Finds commits made in the last day by a particular author, using `git log` | |
# Expects `git` in the path | |
# Can be run from repo or directory of repos | |
# Handling of recursion depth and identifying repos could be improved | |
# See Git docs for '--since' and '--pretty' format: https://git-scm.com/docs/git-log | |
Param( | |
[string]$user, | |
[string]$sinceDate = "yesterday.midnight" | |
) |