Skip to content

Draft: Users before December 8, 2016

Vicky Vergara edited this page Feb 23, 2023 · 29 revisions

The CONTRIBUTING.md Was created on December 8, 2016 on this commit

The following command gives the following result

git log --pretty="format:user:%an date:%ad" --name-only --encoding=UTF-8 --before="2016-12-08" | \                      
grep user contributors.txt | \                                                                                          
awk -F"date" '{print $1}' names.txt | sort | uniq
name same as Contributed After
=
$R0h!tH
Aaron W. Swenson
Alec Gosse
Andrea Nardelli
anton
Bas Couwenberg
Clemens Werther
cvvergara Vicky Vergara
daniel
Daniel Kastl
drnextgis
guest
Illedran
J Kishore kumar
Jonathan Wakely
J Smith
kiorky
Kirill Müller
Kishore kumar J
Ko Nagase
m3th0s
manikanta-kondeti
mapas de vicky
michael skinner
Mohammed Zia
nbrinckm
(no author)
Omar
petebp
Regina Obe
robe2
rohith
Rohith Reddy
root
sanak
Sandro Santilli
Stephen Mather
Stephen Woodbridge
takubo
The Gitter Badger
Vadim Zhukov
Varod
vicky Vicky Vergara
vicky vergara Vicky Vergara
Vicky Vergara Vicky Vergara
Vincent Picavet
yobiSource
zibon

To get the contributors that also contributed after the Contribution agreement was created:

grep user | \                                                                                                           
awk -F"user:" '{print $2}' | sort | uniq > before.txt                                                                   
                                                                                                                        
git log --pretty="format:user:%an" --name-only --encoding=UTF-8 --after="2016-12-08" | \                                
grep user | \                                                                                                           
awk -F"user:" '{print $2}' | sort | uniq > after.txt                                                                    
                                                                                                                        
comm -12 before.txt after.txt                                                                                           

Giving the following result:

=
Aaron W. Swenson
Bas Couwenberg
cvvergara
Daniel Kastl
Regina Obe
robe2
Rohith Reddy
root
Stephen Woodbridge
Vicky Vergara
Clone this wiki locally