Skip to content

Instantly share code, notes, and snippets.

@dcode
Last active August 29, 2015 14:22
Show Gist options
  • Save dcode/949ad498441b176bf684 to your computer and use it in GitHub Desktop.
Save dcode/949ad498441b176bf684 to your computer and use it in GitHub Desktop.
Shows all commits that happened last week
# Find all commits from last week since Sunday from current directory
find . -name .git -print -exec git --git-dir={} log --branches \
--pretty=format:"%ci|%D|%s%n" --since="$(date -v-1w -v-sun +%F)" \
2>/dev/null \; | grep -B1 -E "^[0-9]{4}" | grep -v -E "^$|--"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment