Difference between pages "Developer Queries" and "File:MediaWiki Skin Vector.png"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
m
 
(Maintenance script uploaded a new version of "File:MediaWiki Skin Vector.png")
 
Line 1: Line 1:
This page documents useful queries to perform to look at recent developer activity:


== git Queries ==
=== Committers from Date ===
<console>
xdev2 funtoo-overlay # ##i##git log --stat --after '04-01-2013' | grep Author: | sort -u
Author: Alexander Reitzel <shiin@funtoo.org>
Author: Daniel Robbins <drobbins@funtoo.org>
Author: Jean-Francis Roy <jeanfrancisroy@gmail.com>
Author: Oleg Vinichenko <oleg@funtoo.org>
</console>
== JIRA PostgreSQL Queries ==
=== Top Commenters ===
<console>
jiradb=# ##i##SELECT author, count(author) as comments FROM jiraaction j WHERE UPDATED > now() - interval '30 days' group by author ORDER BY comments DESC limit 10; 
author    | comments -------------+----------
oleg        |      55
drobbins    |      29
golodhrim  |      14
arithmos    |      12
jeanfrancis |      11
fearedbliss |      10
overkill    |        8
janzhou    |        7
anak1n      |        6
sputnik    |        5
(10 rows)
</console>

Latest revision as of 06:04, April 27, 2014