Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fabienhinault/f81ff95dca7c7e3d9c41fdcb2e4fcd55 to your computer and use it in GitHub Desktop.
Save fabienhinault/f81ff95dca7c7e3d9c41fdcb2e4fcd55 to your computer and use it in GitHub Desktop.
tmpfile=$(mktemp /tmp/gitlogXXXXXX.txt); for d in ./*; do echo "#######$d" >> $tmpfile; git -C $d log >> $tmpfile; done; grep -n "\(######\)\|\(marker\)" $tmpfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment