• log commits of a specific author
    • git log --author="contributor_name" --oneline
  • count the number of contributions by author
    • git log --author="contributor_name" --oneline | wc -l

References