Skip to content

Instantly share code, notes, and snippets.

@ctrueden
Last active February 3, 2016 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ctrueden/fbd68a09603ac31c3c56 to your computer and use it in GitHub Desktop.
Save ctrueden/fbd68a09603ac31c3c56 to your computer and use it in GitHub Desktop.
How many commits in the Fiji org?
$ for f in fiji fiji-ext big trakem2 bdv
do
cd $f
echo "== $f =="
mr run git log --format='format:%an-%at-%s' | grep -v '^mr run:' | LC_ALL='C' sort -u | wc -l
cd ..
done
== fiji ==
17993
== fiji-ext ==
1282
== big ==
230
== trakem2 ==
4463
== bdv ==
1130
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment