Skip to content

GHE:Console:Get Commit Timestamps

lbonanomi edited this page Sep 25, 2019 · 1 revision
Repo.all.each do |repo| 
	nwo = repo.name_with_owner; 
	Repo.nwo(nwo).commit_contributions.map.each do |push| 
		print nwo; 
		print ","; 
		print push.created_at; 
		print ","; 
		print push.commit_count; 
		print ","; 
		puts push.user; 
	end; 
end

Clone this wiki locally