Skip to content

Instantly share code, notes, and snippets.

View gcmlpfaltaher's full-sized avatar

Firras Altaher gcmlpfaltaher

View GitHub Profile
@mblanchard
mblanchard / standup.ps1
Last active August 17, 2018 14:59
Finding recent commits for standup
# 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"
)