Last active
August 29, 2015 14:11
-
-
Save afeld/017862706282c10edb6e to your computer and use it in GitHub Desktop.
list contributors to a Git repository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rugged' | |
repo = Rugged::Repository.new('.') | |
walker = Rugged::Walker.new(repo) | |
walker.push('refs/heads/gh-pages') | |
emails = walker.map do |commit| | |
commit.author[:email] | |
end | |
emails.reject! do |email| | |
email.end_with?('@users.noreply.github.com') | |
end | |
puts emails.uniq!.sort! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
One-liner from @aroben:
https://twitter.com/aroben/status/543547456076926976?cn=cmVwbHk%3D