forked from exKAZUu/RepositoryProbe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
python.txt
2000 lines (2000 loc) · 107 KB
/
python.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[TestCase(@"https://github.com/kennethreitz/requests.git",
@"07ee20d07dfd316a0fdd5ec4f5d276a72fe4cc62", 9438)]
[TestCase(@"https://github.com/django/django.git",
@"09af48c70fb5cc652ea109487015472e9ef984df", 9391)]
[TestCase(@"https://github.com/mitsuhiko/flask.git",
@"d4b3d16c142e2189c6faf8f784a195e7f827c596", 9253)]
[TestCase(@"https://github.com/facebook/tornado.git",
@"c5292057a8db3ebec4a80d9c9207bfadff7fa784", 7026)]
[TestCase(@"https://github.com/jkbr/httpie.git",
@"746a1899f319a7c2a60f27bf23cc3762822be1a2", 6922)]
[TestCase(@"https://github.com/ansible/ansible.git",
@"2cc4ac2e7563e6b73666048c3624bf092f9959e1", 5536)]
[TestCase(@"https://github.com/reddit/reddit.git",
@"b50f91c53149671c4039ff1de4250ac0d5bc89c0", 5480)]
[TestCase(@"https://github.com/CamDavidsonPilon/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers.git",
@"39f9356f320bcff1a2a3e01d8559d9089413b4eb", 5379)]
[TestCase(@"https://github.com/kennethreitz/python-guide.git",
@"cf3a875262eb5172342e6b0d06ccfb6655233abf", 4749)]
[TestCase(@"https://github.com/getsentry/sentry.git",
@"94e56e691f4081db7680faf49db5592ec29edd23", 4705)]
[TestCase(@"https://github.com/karan/Projects.git",
@"292fabbd855949a2aa100615b13ad4017809ed81", 4667)]
[TestCase(@"https://github.com/scrapy/scrapy.git",
@"7814cbf3197605a1b125f061a78cde015a934819", 4520)]
[TestCase(@"https://github.com/rg3/youtube-dl.git",
@"2d4c98dbd17676978114b70d59ea15628f886c24", 4143)]
[TestCase(@"https://github.com/pagekite/Mailpile.git",
@"556c9e16855dea71db23bc2180e4cef1cf2a40ef", 4049)]
[TestCase(@"https://github.com/apenwarr/sshuttle.git",
@"9ce2fa00f94c2f2e5c310abeb1a2907ae7e7a7b0", 3944)]
[TestCase(@"https://github.com/boto/boto.git",
@"c213ff114a28aedb491f90a3acc6ee4626cae578", 3680)]
[TestCase(@"https://github.com/ipython/ipython.git",
@"fb1283edcacdeb0aaad12201741e5502a341f0eb", 3550)]
[TestCase(@"https://github.com/getpelican/pelican.git",
@"b11b8a93cd45ad2d16118ce2bffef8bd3128a004", 3281)]
[TestCase(@"https://github.com/saltstack/salt.git",
@"0c9f7eb3569cc5fc547d2ed2628da9a3def7d80e", 3271)]
[TestCase(@"https://github.com/fabric/fabric.git",
@"b41f7995bcaa5ade335e1dd1e438ae2ca42f4e07", 3102)]
[TestCase(@"https://github.com/kennethreitz/legit.git",
@"473d87d32488f8f71f0ee3086814fdf62b291a60", 3088)]
[TestCase(@"https://github.com/facebook/huxley.git",
@"2177563400ba03580622144b521bb116c345225c", 2969)]
[TestCase(@"https://github.com/django/django-old.git",
@"ad096059b58afd35b395b01ad4eba36b8ff863de", 2908)]
[TestCase(@"https://github.com/pydata/pandas.git",
@"ad1f47ddb16c383c7377d0f7a930d0a80c6fbfef", 2874)]
[TestCase(@"https://github.com/faif/python-patterns.git",
@"f7ec06df2f4d7fb98d3187af30d8a54b1bc08dea", 2829)]
[TestCase(@"https://github.com/webpy/webpy.git",
@"73f1119649ffe54ba26ddaf6a612aaf1dab79b7f", 2804)]
[TestCase(@"https://github.com/lebinh/ngxtop.git",
@"3694d55b15f73b531d8c7951711799ffa3c7521a", 2783)]
[TestCase(@"https://github.com/sampsyo/beets.git",
@"fcb55145e6fcafab69bc6eedb16154516c341548", 2734)]
[TestCase(@"https://github.com/liftoff/GateOne.git",
@"2fe1daf3812bbc620ea53245666106e270b7502c", 2707)]
[TestCase(@"https://github.com/divio/django-cms.git",
@"f884372e0576a384e05c6a8f084eaf089eae25b3", 2704)]
[TestCase(@"https://github.com/midgetspy/Sick-Beard.git",
@"a493151582d5779f5656291c9251398623511e7b", 2684)]
[TestCase(@"https://github.com/Lokaltog/powerline.git",
@"c100c90b088c55fe91146eb52dfcbbc7e43039bd", 2614)]
[TestCase(@"https://github.com/django-debug-toolbar/django-debug-toolbar.git",
@"777c8a1cd669bbfde6cfcb8866de4fdf8c0825cf", 2613)]
[TestCase(@"https://github.com/SublimeCodeIntel/SublimeCodeIntel.git",
@"3a0c3b924632e3f504f21f86c2fda2c87d2ce0ca", 2592)]
[TestCase(@"https://github.com/celery/celery.git",
@"ae277443cfe381a0c855a67338afe08a34cff1b5", 2557)]
[TestCase(@"https://github.com/progrium/localtunnel.git",
@"08f3ac0f15f3b7324f1f1b1fbbbccfb926bfa7fe", 2492)]
[TestCase(@"https://github.com/toastdriven/django-tastypie.git",
@"834f728b07ab1a008b281b12a2cab2987f26c99d", 2439)]
[TestCase(@"https://github.com/andymccurdy/redis-py.git",
@"f96e46b971a5bb66ab5f94ba87ab3e092e5f01ac", 2438)]
[TestCase(@"https://github.com/Katee/quietnet.git",
@"946e57c2f87800e342240a4d33c0163d3682e8c1", 2431)]
[TestCase(@"https://github.com/square/SocketRocket.git",
@"656283dd195414723cd473746923db50abd34cb2", 2390)]
[TestCase(@"https://github.com/docopt/docopt.git",
@"05125ddcd1750f7e5ed373044910e224e1e636ed", 2377)]
[TestCase(@"https://github.com/defnull/bottle.git",
@"33b1683793bc6ce8af37c9d5c34be0c4fe220d1f", 2292)]
[TestCase(@"https://github.com/clips/pattern.git",
@"a9d7f8449c0118e7442b4ffb1c78097c74b468ed", 2253)]
[TestCase(@"https://github.com/tomchristie/django-rest-framework.git",
@"b3b0515ae6325e7de6a582bbb2fd7eeac687c325", 2200)]
[TestCase(@"https://github.com/mitmproxy/mitmproxy.git",
@"1dba379ae90593a563acb9dbed6f5e6b721c086a", 2191)]
[TestCase(@"https://github.com/jisaacks/GitGutter.git",
@"299097085eb58bfdb4da52b0d86b4bb450e4c59d", 2182)]
[TestCase(@"https://github.com/amoffat/sh.git",
@"80af5726d8aa42017ced548abbd39b489068922a", 2181)]
[TestCase(@"https://github.com/gleitz/howdoi.git",
@"e022e1d341bdb11f6731f2d819399aee7dc57d5c", 2165)]
[TestCase(@"https://github.com/joke2k/faker.git",
@"7cd01eb89df25ee7e98854b9edd991e008c6f49f", 2163)]
[TestCase(@"https://github.com/nicolargo/glances.git",
@"4177046cdd3be8f2019799490de54a7aab5b0550", 2136)]
[TestCase(@"https://github.com/scrapinghub/portia.git",
@"55f97e61fc558d243a0806ae8bf4a26b080026de", 2132)]
[TestCase(@"https://github.com/jorgebastida/glue.git",
@"33fa00c35ad3a186e187bdf93105617ced46d43f", 2128)]
[TestCase(@"https://github.com/kstenerud/iOS-Universal-Framework.git",
@"2b65899ed6c57e999145f521a327999692837ac8", 2094)]
[TestCase(@"https://github.com/somerandomdude/Iconic.git",
@"3a1136003928f0dbc1284eb568d3a0b6a5ad6830", 2080)]
[TestCase(@"https://github.com/omab/django-social-auth.git",
@"3a6e4414da0e969fcaf625a891852a3b2d7627c0", 2078)]
[TestCase(@"https://github.com/joelthelion/autojump.git",
@"6360876933c4245ee3762a3d52e74a6d591772ff", 1994)]
[TestCase(@"https://github.com/tweepy/tweepy.git",
@"d626a964b29f7a9e93599a3b25789f8b997b1aef", 1993)]
[TestCase(@"https://github.com/simplegeo/python-oauth2.git",
@"a83f4a297336b631e75cba102910c19231518159", 1991)]
[TestCase(@"https://github.com/bup/bup.git",
@"458051fe66179667b88b84cf31596c21d3b0f05a", 1948)]
[TestCase(@"https://github.com/lg/murder.git",
@"9c59118ce17c1d033318a34b01995eb96b3d35a3", 1868)]
[TestCase(@"https://github.com/facebook/chisel.git",
@"368e4f675a77cefc7f2dddfd4de87f8b9422aadd", 1864)]
[TestCase(@"https://github.com/django-extensions/django-extensions.git",
@"893bcffdb79dbdd98ecf5aebe30452080c71ac7a", 1844)]
[TestCase(@"https://github.com/pinax/pinax.git",
@"2d45637a035d41ec900e0f3152812cb940c76d35", 1839)]
[TestCase(@"https://github.com/aws/aws-cli.git",
@"4996cd601117b83e059104b7c9c0a65dbd0c00df", 1828)]
[TestCase(@"https://github.com/klen/python-mode.git",
@"b79b2e991e48488fb2800d9deec3b2ec457bb095", 1793)]
[TestCase(@"https://github.com/sokolovstas/SublimeWebInspector.git",
@"ec464edcb13899ea4b4ff98003fc8daf7f1d451a", 1788)]
[TestCase(@"https://github.com/redecentralize/alternative-internet.git",
@"2f4b440c456c00813d78d3416c8b72ec2f08cc5c", 1787)]
[TestCase(@"https://github.com/orchardup/fig.git",
@"530afba5cb0d0f0b15f37643f4da476c4b336ded", 1785)]
[TestCase(@"https://github.com/benoitc/gunicorn.git",
@"3bf6d0e77026098e7a6d905426c53e951a3889ef", 1783)]
[TestCase(@"https://github.com/sqlmapproject/sqlmap.git",
@"ef5ce7e66c26af2405ea7f0e1da282b99f7cb450", 1767)]
[TestCase(@"https://github.com/devstructure/blueprint.git",
@"574a9fc0dd3031c66970387f1105d8c89e61218f", 1732)]
[TestCase(@"https://github.com/kivy/kivy.git",
@"84a6bbcae99278928c996ddcbc39d683c2803e57", 1722)]
[TestCase(@"https://github.com/kemayo/sublime-text-git.git",
@"cce6c085670140d00b3f76c5458f34bf7caeb5ef", 1691)]
[TestCase(@"https://github.com/gregmalcolm/python_koans.git",
@"075dfd4d3d9a9c1908664e304b964076782ddcdb", 1667)]
[TestCase(@"https://github.com/thearn/webcam-pulse-detector.git",
@"42bfbe23a54e8f0a1725595468e4486d96e11561", 1665)]
[TestCase(@"https://github.com/shipyard/shipyard.git",
@"400b6455fc249ad096bc849f2f27385cfe2daa6d", 1650)]
[TestCase(@"https://github.com/stephenmcd/mezzanine.git",
@"c937a98c2e83231e3016b5a562a9dc96d41a51bb", 1644)]
[TestCase(@"https://github.com/mitsuhiko/jinja2.git",
@"b7d13f278753d057bb3765b4d4a672c351d88bf3", 1626)]
[TestCase(@"https://github.com/sloria/TextBlob.git",
@"75d983fc798528dc3c8633efcfb031ae191752d1", 1625)]
[TestCase(@"https://github.com/wbond/sublime_package_control.git",
@"0b03e16d91203df21aced724b013c8bd75856cd3", 1620)]
[TestCase(@"https://github.com/harelba/q.git",
@"eb64e76c366163b14ba76b95525ef0ac99d0ab9b", 1616)]
[TestCase(@"https://github.com/fogleman/Minecraft.git",
@"d02cd72d1ec2ee133b3fec6ac1710e22bea59365", 1561)]
[TestCase(@"https://github.com/coursera-dl/coursera.git",
@"3fdb3ce901587eaadb6a1b3c00f1d45ae666e5c2", 1520)]
[TestCase(@"https://github.com/clowwindy/shadowsocks.git",
@"854d1752453d742db9c759f2ae4c3253dd0143e7", 1517)]
[TestCase(@"https://github.com/opdemand/deis.git",
@"50e42169ac82417dd337fd4a08527401edbeea85", 1507)]
[TestCase(@"https://github.com/maraujop/django-crispy-forms.git",
@"e31e39561c10b01be3693914aad1aa79350f5647", 1502)]
[TestCase(@"https://github.com/jeffknupp/sandman.git",
@"e534defd803082feee0af30b64d2c9fb4c5ed2ac", 1482)]
[TestCase(@"https://github.com/playframework/play1.git",
@"b835b790c795bddd7d41ac6a4a7a1eb6922fab2f", 1472)]
[TestCase(@"https://github.com/matplotlib/matplotlib.git",
@"3c8fe522356de92811bf0aecb244b5603b6e48c6", 1460)]
[TestCase(@"https://github.com/thumbor/thumbor.git",
@"0ec1e71fe2d85d3278e3a4196e23f8d8229238e3", 1459)]
[TestCase(@"https://github.com/mitsuhiko/werkzeug.git",
@"ca58b6856f1bb204e8a2b4fd247d92ad943b798b", 1419)]
[TestCase(@"https://github.com/iambus/xunlei-lixian.git",
@"4d814d1b6fc6907162892ffae3e22898ad98184f", 1411)]
[TestCase(@"https://github.com/toastdriven/django-haystack.git",
@"366e7489169d460d36ac4d942c22c0e97e58c26b", 1408)]
[TestCase(@"https://github.com/fxsjy/jieba.git",
@"2682e887b83962f6ff84fbc896de2ff5cfc903f8", 1402)]
[TestCase(@"https://github.com/nltk/nltk.git",
@"8cef1664d6461992b5c6f172dd8975511e043d4e", 1396)]
[TestCase(@"https://github.com/quantopian/zipline.git",
@"63e3aa4c1e8f25b08e3fbc437f778b28453c7e45", 1395)]
[TestCase(@"https://github.com/nicolaiarocci/eve.git",
@"ee559c0407204ee4c42c8b3e59f3c6b8fa4a7437", 1386)]
[TestCase(@"https://github.com/aziz/PlainTasks.git",
@"be34d6efad4435e4029870297d193699985bc414", 1386)]
[TestCase(@"https://github.com/RuudBurger/CouchPotatoServer.git",
@"b69f8b7ed520930dcab53dc27c1eb58a0c2afbf4", 1378)]
[TestCase(@"https://github.com/utahta/pythonbrew.git",
@"e8823c5494a26e2c91aa516eac80b748474ba129", 1368)]
[TestCase(@"https://github.com/kennethreitz/clint.git",
@"f1ab574413631de12166469e87257784785d3da6", 1364)]
[TestCase(@"https://github.com/taobao/nginx-book.git",
@"b1cba2dc114393766e863581b34dbe179b28c18e", 1363)]
[TestCase(@"https://github.com/codelucas/newspaper.git",
@"e0718be363470a19055b1e894957d127c6ae541d", 1361)]
[TestCase(@"https://github.com/Pylons/pyramid.git",
@"77005d96fa57a83ac91c2547892fbb3e3c34e553", 1352)]
[TestCase(@"https://github.com/treeio/treeio.git",
@"a4fbffabec2644a98f8b06d678a94d2949304235", 1335)]
[TestCase(@"https://github.com/surfly/gevent.git",
@"f6831bfa5cac1fcbdbc76b8d9595ec4f6c53889e", 1331)]
[TestCase(@"https://github.com/rembo10/headphones.git",
@"d6cd9cd7e4cd95e2e4d2fd845fa0c64b91e5e4a5", 1319)]
[TestCase(@"https://github.com/koenbok/Cactus.git",
@"10cd41a4a06ab0c88daf625e5a1b7fda202d7126", 1319)]
[TestCase(@"https://github.com/nvie/rq.git",
@"aef7af9c77fb6c1e5836403660a4e71fe3c05230", 1316)]
[TestCase(@"https://github.com/mongodb/mongo-python-driver.git",
@"a7575fa14f5a9aaeb0149981899f776af9e1ad1c", 1286)]
[TestCase(@"https://github.com/lihaoyi/macropy.git",
@"13993ccb08df21a0d63b091dbaae50b9dbb3fe3e", 1271)]
[TestCase(@"https://github.com/torchbox/wagtail.git",
@"d3ac6c072886a1c4cd8d27b94c4a9b6e9d51f218", 1256)]
[TestCase(@"https://github.com/pypa/pip.git",
@"7bda9c3e6fba43260aef822421627b7f7bdc7005", 1255)]
[TestCase(@"https://github.com/kennethreitz/envoy.git",
@"94c24eeaea8ba171a87e99194a59b36932424a66", 1254)]
[TestCase(@"https://github.com/Bitmessage/PyBitmessage.git",
@"700e3d1f17a820dd80108c08c8e1679debed2fd3", 1239)]
[TestCase(@"https://github.com/Eugeny/ajenti.git",
@"75013c621095775887f514ba014b36578ca48fae", 1237)]
[TestCase(@"https://github.com/martinblech/xmltodict.git",
@"23b9f41d90bf29d119246e3dcac29fec3a5fbc8e", 1229)]
[TestCase(@"https://github.com/samuraisam/pyapns.git",
@"a56912f3b83b72c497e716c34ed6b5fda6bd21f3", 1223)]
[TestCase(@"https://github.com/litl/rauth.git",
@"97b6c6a3cff0379bd915acd2de382ccc5f22c4cf", 1218)]
[TestCase(@"https://github.com/openstack/nova.git",
@"66e4e32f8b8f1fa004ca0289b843e0a4fa5600d1", 1198)]
[TestCase(@"https://github.com/AppScale/appscale.git",
@"1d1d24d7ae1890f39db9775ebfb3efddb12ad79d", 1197)]
[TestCase(@"https://github.com/django-compressor/django-compressor.git",
@"aba8c5f6b59dd78831d2bf1e53222f8475b2f9f8", 1197)]
[TestCase(@"https://github.com/pennersr/django-allauth.git",
@"3fee3665b86cc9a56174e81267a187b36b1290de", 1162)]
[TestCase(@"https://github.com/gorakhargosh/watchdog.git",
@"a8391941d4ff450483f0dfe2b5a3c02ecdd8f818", 1159)]
[TestCase(@"https://github.com/jokkedk/webgrind.git",
@"dc3539340dba1c6d6308a62a9701fdc3f3343de5", 1154)]
[TestCase(@"https://github.com/coleifer/peewee.git",
@"e24cdd19204d63984d537842336cbc5426217cc0", 1149)]
[TestCase(@"https://github.com/pudo/dataset.git",
@"e08565609e2439ac9a88f98081a36e42ba44a6a0", 1141)]
[TestCase(@"https://github.com/dotcloud/zerorpc-python.git",
@"1dee8bdb1ce78ee792cb4b46a47d894e70f26cb6", 1137)]
[TestCase(@"https://github.com/gurgeh/selfspy.git",
@"75792f48e280575366ce855a947f2bff6eea513b", 1135)]
[TestCase(@"https://github.com/spadgos/sublime-jsdocs.git",
@"da6294af5301d108cf42f90eb11e01f32395c8ac", 1132)]
[TestCase(@"https://github.com/DanMcInerney/LANs.py.git",
@"791d794b3851891e2c50be39336459d515307271", 1125)]
[TestCase(@"https://github.com/edx/edx-platform.git",
@"36be4e543c41284172031585ae8fe0dc825166bc", 1122)]
[TestCase(@"https://github.com/rstacruz/sparkup.git",
@"ea35be6c0bac75e6308ebf72a9c737fb8c21e3ae", 1122)]
[TestCase(@"https://github.com/google/pyringe.git",
@"6309eb6215cb3750fc3e914c17f6e472aec12824", 1122)]
[TestCase(@"https://github.com/crsmithdev/arrow.git",
@"b7eb832c08a1e376ffbacb70e95366b03a844379", 1117)]
[TestCase(@"https://github.com/livid/v2ex.git",
@"c8af57e2d2c4c8701901fb346cc98a4cde13b54b", 1116)]
[TestCase(@"https://github.com/spotify/luigi.git",
@"8b13063c398a3fa9f7b1dadacefa0512b407f164", 1114)]
[TestCase(@"https://github.com/khamidou/kite.git",
@"5ed8ba0c002b38733804d50410792245474520c6", 1090)]
[TestCase(@"https://github.com/numba/numba.git",
@"36d4596430ee4e3761cdd5adf14509160dad213c", 1079)]
[TestCase(@"https://github.com/scipy/scipy.git",
@"87df1db4f0137dd30d6841565dd88f16bddccb02", 1076)]
[TestCase(@"https://github.com/Yelp/mrjob.git",
@"94a67a42d36e69aada9e31d1975be32e730f1656", 1076)]
[TestCase(@"https://github.com/rtfd/readthedocs.org.git",
@"fc4dbc905010c0a47764e19366f8b1f09231df53", 1073)]
[TestCase(@"https://github.com/sivel/speedtest-cli.git",
@"18408ee93884de3d28142d0afac12714049e293b", 1073)]
[TestCase(@"https://github.com/sympy/sympy.git",
@"9ba613eb3385c9fc63a834efc624595b0d7ac7b7", 1072)]
[TestCase(@"https://github.com/ajalt/fuckitpy.git",
@"9db07766ceb73e95f7e5f6bd1245967535e8e2c3", 1070)]
[TestCase(@"https://github.com/etianen/django-reversion.git",
@"7a163dde302f072904e1f0e102cc8d98b64dfe92", 1063)]
[TestCase(@"https://github.com/paramiko/paramiko.git",
@"e96e2653a2ca0a465d2773b1fe468c0f87e758bc", 1063)]
[TestCase(@"https://github.com/RuudBurger/CouchPotatoV1.git",
@"135b3331d1b88ef645e29b76f2d4cc4a732c9232", 1059)]
[TestCase(@"https://github.com/freedomofpress/securedrop.git",
@"3e794a7052225bcb9bde0f498bd4797b475a40e0", 1058)]
[TestCase(@"https://github.com/milkbikis/powerline-shell.git",
@"e8300222fed3e5424956b9ef7e026e26edc227fd", 1053)]
[TestCase(@"https://github.com/etsy/logster.git",
@"7475c53822c2e22d0994ea059bfd482044019a5b", 1053)]
[TestCase(@"https://github.com/davidhalter/jedi.git",
@"4ff8b921a3b252895ed43b9598a5a40f0cbd487c", 1040)]
[TestCase(@"https://github.com/newsapps/beeswithmachineguns.git",
@"5eeb3cabfecc31add46f2dabe804c7a9277cd035", 1040)]
[TestCase(@"https://github.com/seatgeek/fuzzywuzzy.git",
@"7d8f2f89b69bd21707f5b66036d568c81f81d64e", 1033)]
[TestCase(@"https://github.com/wrobstory/vincent.git",
@"c2e4e34cb6e008e759d63066c9b8420fd2f0e71c", 1027)]
[TestCase(@"https://github.com/kennethreitz/tablib.git",
@"fc4cc7fa148c3e292fb33e9c07eb9e47a3e45fcf", 1025)]
[TestCase(@"https://github.com/sightmachine/SimpleCV.git",
@"fd26f7ea451db9ed24ab8cfceff23251fbac350b", 1023)]
[TestCase(@"https://github.com/alex/django-taggit.git",
@"f478e34f8e82c20b04f5992ae5299d7cf41c2b9f", 1002)]
[TestCase(@"https://github.com/hyde/hyde.git",
@"b29ba60b2b752ee31ecb5894409529d9ed99202e", 1000)]
[TestCase(@"https://github.com/iBaa/PlexConnect.git",
@"e076e37cb30ac9f72d7a52a8c1cc7da6fa4f6315", 992)]
[TestCase(@"https://github.com/kachayev/fn.py.git",
@"dc5c57345dc05398c0b0a1a12c479a986b970995", 991)]
[TestCase(@"https://github.com/gaubert/gmvault.git",
@"02f33060eb3744658681a7f667bcb513132706e9", 990)]
[TestCase(@"https://github.com/python-imaging/Pillow.git",
@"994c9a7e56a8a74da9044d9a732a29e41b4d30b6", 982)]
[TestCase(@"https://github.com/elvanderb/TCP-32764.git",
@"fc014066bac5fd3158d21e5336f5be85582b36a8", 981)]
[TestCase(@"https://github.com/sixohsix/twitter.git",
@"83c7a242415861d7f0f18037c2866f308782164d", 978)]
[TestCase(@"https://github.com/gmate/gmate.git",
@"f77cb109ab50959ad0b0ac6138ba16d1ecff6d4d", 976)]
[TestCase(@"https://github.com/DanMcInerney/wifijammer.git",
@"386a4399c6d54777e716b64138ab9a2722afcbaf", 976)]
[TestCase(@"https://github.com/sebastien/cuisine.git",
@"329e0bf2a956a1c153dc3b1ca17067378ef376e7", 972)]
[TestCase(@"https://github.com/sublimehq/anim_encoder.git",
@"06f6fec3c459db5c77778c3aa8804289f8bb1960", 958)]
[TestCase(@"https://github.com/tgalal/yowsup.git",
@"938cf1f0d0aedf650be748dcc258a43b8c87a6b3", 942)]
[TestCase(@"https://github.com/kennethreitz/inbox.py.git",
@"551b4f44b144564504c687cebdb4c543cb8e9adf", 936)]
[TestCase(@"https://github.com/pythonforfacebook/facebook-sdk.git",
@"e30370fa71a73129979cdd838307a37812d94d1b", 930)]
[TestCase(@"https://github.com/tangentlabs/django-oscar.git",
@"f3f983ac3faed17a242ac1fbb9e2dbfbb8385f50", 929)]
[TestCase(@"https://github.com/martinrusev/amonone.git",
@"c882215aa3b970db8f4da1eb7789b6199cf4610a", 928)]
[TestCase(@"https://github.com/tschellenbach/Django-facebook.git",
@"4a57628766afe5a09525faf246f0bc2563b9c3a0", 928)]
[TestCase(@"https://github.com/chrisallenlane/cheat.git",
@"406cf0dcf3c86305bce7a471feb592a36a80b791", 921)]
[TestCase(@"https://github.com/buildbot/buildbot.git",
@"d3364bff14663a422a7bc4a5a6cdede14645cc56", 920)]
[TestCase(@"https://github.com/nathanborror/django-basic-apps.git",
@"3a90090857549ea4198a72c44f45f6edb238e2a8", 919)]
[TestCase(@"https://github.com/charlierguo/gmail.git",
@"4626823d3fbf159d242a50b33251576aeddbd9ad", 917)]
[TestCase(@"https://github.com/revolunet/sublimetext-markdown-preview.git",
@"3b94b8489b2c9b6f54eabf50bd19984e9b588f2c", 911)]
[TestCase(@"https://github.com/overviewer/Minecraft-Overviewer.git",
@"8e5944d5c3fc1c1aae8331daa1b72af0c29d8702", 909)]
[TestCase(@"https://github.com/emre/storm.git",
@"92fb3a77f4f39578a327aba419a7f4a1afcf1199", 902)]
[TestCase(@"https://github.com/Supervisor/supervisor.git",
@"65221682eb2590b2de504586f5736d55327e81d6", 894)]
[TestCase(@"https://github.com/mikemaccana/python-docx.git",
@"e507db84bdaa65010b616033a8ac6639ac4f6a12", 890)]
[TestCase(@"https://github.com/symfony/symfony-docs.git",
@"98288fcf789197b5c7a26a6a44ccbdabc911690f", 889)]
[TestCase(@"https://github.com/pypa/virtualenv.git",
@"5858d32f913f626c536c78fdd17c9c67d1d1fb70", 889)]
[TestCase(@"https://github.com/etsy/skyline.git",
@"90d7bb16ea6ebc8a61b66e67428c8e669b1082a1", 887)]
[TestCase(@"https://github.com/paulhammond/webkit2png.git",
@"8c6fbb435990c81ce721ba3bc6bc12dfb332aaa2", 879)]
[TestCase(@"https://github.com/titoBouzout/SideBarEnhancements.git",
@"067db326b805163840333721cf2708d0e224e9fe", 878)]
[TestCase(@"https://github.com/mothran/bunny.git",
@"8a61d0eddf7d655b6493847f106e7ee6110f53fe", 875)]
[TestCase(@"https://github.com/Rip-Rip/clang_complete.git",
@"5b3ced59588dc9f65e9e916890cb6795764c3fe4", 875)]
[TestCase(@"https://github.com/wuub/SublimeREPL.git",
@"f2b2a79140fe8423a5233fd9b962fe9bde052ca6", 872)]
[TestCase(@"https://github.com/lra/mackup.git",
@"565fbc6c9f48f3e1082fba2965948f609ef64f4d", 867)]
[TestCase(@"https://github.com/noamraph/tqdm.git",
@"da5fdbf7c05a9127f04ac5887292457e8335f480", 867)]
[TestCase(@"https://github.com/madisonmay/CommonRegex.git",
@"2cf86259676da169b480f734181a5831eb62f8b9", 866)]
[TestCase(@"https://github.com/klbostee/dumbo.git",
@"ca79358a061d18df45b1ab8010cfd69f5943ef6b", 863)]
[TestCase(@"https://github.com/Jahaja/psdash.git",
@"f05c8e0a1011603d5ef408d32f7cf34e2a2f2470", 862)]
[TestCase(@"https://github.com/simon-weber/Unofficial-Google-Music-API.git",
@"e23d2f51f533b47c90df6120a4f2ecc588cf1737", 859)]
[TestCase(@"https://github.com/jacobian/djangobook.com.git",
@"e205e45759fdd4ae2e4f9e6ed8fbf87a0e158c53", 855)]
[TestCase(@"https://github.com/bread-and-pepper/django-userena.git",
@"f07ba8e209ee97b16467cf3cddb4b4a77a7f04a8", 852)]
[TestCase(@"https://github.com/s3tools/s3cmd.git",
@"d52d5edcc916512e979917f04abcea19d3a25af7", 850)]
[TestCase(@"https://github.com/sshwsfc/django-xadmin.git",
@"effe5c0471be4c2f434ccece3a0c48bf222e0c74", 847)]
[TestCase(@"https://github.com/hannes-brt/hebel.git",
@"346cfa6765c347fc60ab1e3f0d426e5d152f813b", 838)]
[TestCase(@"https://github.com/twilio/stashboard.git",
@"5713647d4eeda0306a95d583283734382a067033", 836)]
[TestCase(@"https://github.com/dcramer/django-devserver.git",
@"b65bee8e22adf777181147a7e80fb16ace1fd776", 826)]
[TestCase(@"https://github.com/alex/django-filter.git",
@"d88b98dd2b70551deb9c128b209fcf783b325acc", 826)]
[TestCase(@"https://github.com/zeromq/pyzmq.git",
@"3fd2d252be30ee21c0b416fd9a0793da3f6abad3", 814)]
[TestCase(@"https://github.com/django-mptt/django-mptt.git",
@"e82722d9152986be64ac5a40df9cd5a1d5462311", 814)]
[TestCase(@"https://github.com/omab/python-social-auth.git",
@"461ae02c612a3c44212414f3147d020330cbd40d", 810)]
[TestCase(@"https://github.com/topazproject/topaz.git",
@"2aaf6231728943a0cead1a0d3fa02b3df5aeb087", 807)]
[TestCase(@"https://github.com/audreyr/cookiecutter.git",
@"a144fe77ebd4c6a8d43c87f7aba00c48b985d363", 807)]
[TestCase(@"https://github.com/networkx/networkx.git",
@"4f31ecac6ff2193b8d29232f8382439c12904256", 802)]
[TestCase(@"https://github.com/facelessuser/BracketHighlighter.git",
@"d0634d794b1dd2d9cc154d5a6d83be5808d38388", 800)]
[TestCase(@"https://github.com/mopidy/mopidy.git",
@"ed918fc7ff4d6009acd48197d2019e921e8ad697", 791)]
[TestCase(@"https://github.com/SirVer/ultisnips.git",
@"2f848994458d006a6adebee028c7e27475ebdbb9", 785)]
[TestCase(@"https://github.com/hhatto/autopep8.git",
@"5cb335c7638f9f158cb0f5281e5a3155fdaee153", 782)]
[TestCase(@"https://github.com/gabrielfalcao/lettuce.git",
@"09b10c5f6797b7c39579c5a935d458f8e6ef9bfc", 781)]
[TestCase(@"https://github.com/Fantomas42/django-blog-zinnia.git",
@"73849ba5fe22874b64074555acf986890b507dc5", 780)]
[TestCase(@"https://github.com/earle/django-bootstrap.git",
@"97eb50b3f4932798e7fa8ad4b42f0534d521826d", 778)]
[TestCase(@"https://github.com/nvie/pip-tools.git",
@"d138317842ef934d8711172d7f1ef785d0af8f37", 771)]
[TestCase(@"https://github.com/douban/dpark.git",
@"7e7d17668a689b4c77c3a246a599046c33a72923", 770)]
[TestCase(@"https://github.com/mikedewar/d3py.git",
@"1f16ece3fb21b8d26d1adf2640b9a58ab49c25c5", 770)]
[TestCase(@"https://github.com/twilio/flask-restful.git",
@"093c88019d62dd12acf696ef590615b2b33bcca3", 767)]
[TestCase(@"https://github.com/aaronsw/html2text.git",
@"8ddc844b03042faf4875d465580ad122f9292978", 767)]
[TestCase(@"https://github.com/goldsmith/Wikipedia.git",
@"74c8844cdbb8af16d670a0057edc7b8f48664feb", 761)]
[TestCase(@"https://github.com/nojhan/colout.git",
@"3e0535db25b78fdc3d826b7e8d6126d09615671d", 757)]
[TestCase(@"https://github.com/pybrain/pybrain.git",
@"6f41772d83443743a4b7ee0b59dd89a13974bd8c", 755)]
[TestCase(@"https://github.com/twitter/commons.git",
@"7be9e7d92ac028219d62680260048cc87f8ec156", 754)]
[TestCase(@"https://github.com/dz0ny/leapcast.git",
@"f567474b03d120373ba89eb8fa12df2bf5ffe286", 748)]
[TestCase(@"https://github.com/divio/django-shop.git",
@"f7323728c50739fdceb0eb2079e206a7b3fb2f77", 745)]
[TestCase(@"https://github.com/kennethreitz/httpbin.git",
@"4fe5211a1c103dbfc3c61c512f69f16b3719b0c8", 741)]
[TestCase(@"https://github.com/luispedro/BuildingMachineLearningSystemsWithPython.git",
@"bb7510741b5a745237186a85c6b648e5b8b37f26", 739)]
[TestCase(@"https://github.com/lunixbochs/actualvim.git",
@"a8eb533bb22bed05a71b2fc7af588b43d5127d73", 738)]
[TestCase(@"https://github.com/pinry/pinry.git",
@"b79e6249ea7d9694ad712c7ae26574de20044581", 737)]
[TestCase(@"https://github.com/ryanmcgrath/twython.git",
@"10e60fca108408d5f371f7160f66319dd0b71b03", 735)]
[TestCase(@"https://github.com/mothran/mongol.git",
@"3dbee7e69c56debdd154b54b08820ce7ff84b191", 734)]
[TestCase(@"https://github.com/cython/cython.git",
@"870498410e621afda6d6efc679f286315ba98edc", 732)]
[TestCase(@"https://github.com/getsentry/raven-python.git",
@"cfc00cb82bf6892b0fe5832d66764260f28675de", 728)]
[TestCase(@"https://github.com/pydanny/django-admin2.git",
@"92e58112eb96d7b5320db94f43b291ef5dbd868f", 728)]
[TestCase(@"https://github.com/sripathikrishnan/redis-rdb-tools.git",
@"d39c8e5127daf3e109c0f0e101af8ed0e5400493", 724)]
[TestCase(@"https://github.com/piskvorky/gensim.git",
@"dba289966ddcbea94dfc0f3f00ed902d004b06dd", 722)]
[TestCase(@"https://github.com/openstack/swift.git",
@"e0108af54f2a6c3be156c21645ccdbdcb3645225", 720)]
[TestCase(@"https://github.com/mozilla/playdoh.git",
@"958629197a5815c2e67922c164ac30e10d34860f", 720)]
[TestCase(@"https://github.com/ContinuumIO/blaze.git",
@"94649ab53ae219c142ad85239ccdc21ea8b7f433", 718)]
[TestCase(@"https://github.com/celery/django-celery.git",
@"415f70027116ad362c0b66a4cbfe341b3a7e3675", 717)]
[TestCase(@"https://github.com/feross/SpoofMAC.git",
@"0ad0301298ce26229f1695a0dcee2267be0cec10", 712)]
[TestCase(@"https://github.com/justinmeister/Mario-Level-1.git",
@"d18cbd11e5cd0b892ce02f66790ba65b3c1fa5de", 708)]
[TestCase(@"https://github.com/jcrocholl/pep8.git",
@"b14a97e5753b9c63794b76a8ef66ef9a03186b79", 707)]
[TestCase(@"https://github.com/vimeo/graph-explorer.git",
@"1a6058d17278101ebecc46ead696323e60505190", 704)]
[TestCase(@"https://github.com/IronLanguages/main.git",
@"6e767994da0d7bd4f887705e12cda9f118671180", 703)]
[TestCase(@"https://github.com/mozilla-services/circus.git",
@"e9095513ff00864e414fb58ee2affa69debd0bff", 702)]
[TestCase(@"https://github.com/mher/flower.git",
@"620d80cc40f61910132d286f05f9ce5eb947db1f", 701)]
[TestCase(@"https://github.com/BrightcoveOS/Diamond.git",
@"bea5abf0fb24c17ccb2346ac9a5a7802d32289e1", 701)]
[TestCase(@"https://github.com/gelstudios/gitfiti.git",
@"dd7473b0261fe1cb206c806bf861fcd10926018f", 701)]
[TestCase(@"https://github.com/Suor/funcy.git",
@"ead72759cf4986116723243f142c6eb9082c78bc", 697)]
[TestCase(@"https://github.com/SublimeText-Markdown/MarkdownEditing.git",
@"5b069326f17d4fc329f98761c224cdc4d0010e4b", 697)]
[TestCase(@"https://github.com/seb-m/pyinotify.git",
@"b59a48b05cf851d9f47b16f3a3a3a8eba7e8ddac", 696)]
[TestCase(@"https://github.com/jasperproject/jasper-client.git",
@"9c240bafb55b0c8de45b024a606d903c125b9ae1", 696)]
[TestCase(@"https://github.com/pymc-devs/pymc.git",
@"a8c872c25dc8ed8235b248c3ff1deba160eb9d8d", 694)]
[TestCase(@"https://github.com/phusion/baseimage-docker.git",
@"c740ff2f4d234d69f3c5a87ed98d5560954c6eee", 694)]
[TestCase(@"https://github.com/fritzy/SleekXMPP.git",
@"7548f4404736a03e0a073d03e6eabe59818c3e79", 691)]
[TestCase(@"https://github.com/wbond/package_control_channel.git",
@"58206d23d767c0dfc74c6c947ffda4b134883d47", 689)]
[TestCase(@"https://github.com/driverdan/dropship.git",
@"a6d8038426e4f7b24536c136ee62741d40338745", 688)]
[TestCase(@"https://github.com/mit-probabilistic-computing-project/BayesDB.git",
@"36e8234f263a5e253c8b748fc38f6a73cfeaf1a2", 686)]
[TestCase(@"https://github.com/defunkt/pystache.git",
@"6a54b9a412354ae1e0a53bcb4db9d440b8c86dd6", 685)]
[TestCase(@"https://github.com/chrisglass/xhtml2pdf.git",
@"05de993668da50f30767647d869223edf150f31e", 682)]
[TestCase(@"https://github.com/agiliq/merchant.git",
@"a9e1d8be1cbc63f73c3f74c8785c1ff4969338a1", 680)]
[TestCase(@"https://github.com/cobbler/cobbler.git",
@"64283a98087fe36559dea6869bb3499fa8ebae8b", 678)]
[TestCase(@"https://github.com/jsocol/bleach.git",
@"7947b26140cd1c380eabf90ed15826de1c454256", 675)]
[TestCase(@"https://github.com/overshard/pinry.git",
@"ceb7d958e6086615715fd28e12ffb34ed21501f6", 674)]
[TestCase(@"https://github.com/dfm/osrc.git",
@"f47bc4579d480a1939105a7267f5c287254c0a73", 670)]
[TestCase(@"https://github.com/halgari/clojure-py.git",
@"60689b4ff54c9f1260aae68c31ddc3b6b4c0bb98", 667)]
[TestCase(@"https://github.com/mariocesar/sorl-thumbnail.git",
@"32d3279851e3c24ffd4a44fe5eea36d5b5ca1c56", 664)]
[TestCase(@"https://github.com/cloudera/hue.git",
@"cc4a8965adeb26378779852315660f1713e83ca3", 660)]
[TestCase(@"https://github.com/bslatkin/dpxdt.git",
@"756d76bc012c73dd3dbbcfaebe44060578fc52a3", 658)]
[TestCase(@"https://github.com/apenwarr/redo.git",
@"33dadbfe07b8844b4428011c8f8ca24eb91633fe", 657)]
[TestCase(@"https://github.com/maxme/bitcoin-arbitrage.git",
@"e0b5f0b26cc134c11d9bf1fe69c083a45d49f4e3", 657)]
[TestCase(@"https://github.com/gabrielfalcao/HTTPretty.git",
@"4c2b10925c86c9b6299c1a04ae334d89fe007ae2", 656)]
[TestCase(@"https://github.com/gruns/furl.git",
@"4c9dd0e1d46d8642af29ba4c77c9c9cda3c2d6be", 655)]
[TestCase(@"https://github.com/mwaskom/seaborn.git",
@"cf07d2b3804d617948933c2384d3c8e82b61e51a", 653)]
[TestCase(@"https://github.com/Stanford-Online/class2go.git",
@"45a457e89790cb83942d24ada816357dc91b8fe4", 652)]
[TestCase(@"https://github.com/JakeWharton/pidcat.git",
@"ccbaa1a77f06b7f9d33395df56a5d3ca628371e7", 650)]
[TestCase(@"https://github.com/nvbn/everpad.git",
@"925d1e63b45b7e534bf80dbd9ebb4d9196427489", 650)]
[TestCase(@"https://github.com/bitly/data_hacks.git",
@"2bf87f8b31ed60a7d447cf9e63dd14df949ad969", 650)]
[TestCase(@"https://github.com/TooTallNate/node-gyp.git",
@"e82e4387bed35cc59d61a6433dc23d9caf0bdc01", 648)]
[TestCase(@"https://github.com/jelmer/dulwich.git",
@"69a0c8cb94698eb5d2d7a2faf3214f480ea41722", 644)]
[TestCase(@"https://github.com/django-admin-bootstrapped/django-admin-bootstrapped.git",
@"a42cedb8816be7f0874853885acb0241d05e415c", 644)]
[TestCase(@"https://github.com/maltize/sublime-text-2-ruby-tests.git",
@"5a1f080e5a15225a178fea1d7ca94ac7bb68c60d", 644)]
[TestCase(@"https://github.com/dotcloud/docker-registry.git",
@"46d75775055efa618e89abfe6a87f1d8767d05eb", 643)]
[TestCase(@"https://github.com/SmileyChris/easy-thumbnails.git",
@"eb1673d5cb5c29940edf125d71de2c03fa642703", 642)]
[TestCase(@"https://github.com/trentm/python-markdown2.git",
@"26daeae75bc06cade2d9455881287e74d0b397a7", 640)]
[TestCase(@"https://github.com/angular-ui/AngularJS-sublime-package.git",
@"301408351bf6ab7fc21cd3f64c26a3a2515f4c5a", 635)]
[TestCase(@"https://github.com/chrippa/livestreamer.git",
@"002f4d97001c72004d1e8df5edb3f1ab9a2c4306", 633)]
[TestCase(@"https://github.com/mycozycloud/cozy-setup.git",
@"ec4c24f78060a9d3487f816e50156d0a0946c9d6", 631)]
[TestCase(@"https://github.com/facebook/opencompute.git",
@"93b8581c6f18d7cab41a39544417a4154038e7f1", 631)]
[TestCase(@"https://github.com/mhartl/rails_tutorial_sublime_text.git",
@"e03061af1fc846b4a7d802609a1caa4c7ddb02ee", 631)]
[TestCase(@"https://github.com/lukaszb/django-guardian.git",
@"0c38ab7d6d43c1af01b43d452d49df486c17e0d7", 630)]
[TestCase(@"https://github.com/dbader/schedule.git",
@"6c4a75c0f42cf779ebf627c7c3b92f562493ea56", 628)]
[TestCase(@"https://github.com/liruqi/west-chamber-season-3.git",
@"0b065f0369addaa3aa56b608649ed97e9759e1cf", 624)]
[TestCase(@"https://github.com/ronnix/fabtools.git",
@"e9744c282144c225563d915571de4f52cd772fa9", 622)]
[TestCase(@"https://github.com/samarudge/dnsyo.git",
@"248602dea7dd89e445e0e3fe3cba473302dd8d46", 622)]
[TestCase(@"https://github.com/kamalgill/flask-appengine-template.git",
@"9a1411a42466551f7474f752037d806b9520a28e", 621)]
[TestCase(@"https://github.com/gittip/www.gittip.com.git",
@"bd3c82e30b551af23c9a110f1d6b196ea199ac15", 620)]
[TestCase(@"https://github.com/peterbe/mincss.git",
@"c97b4859164217866a0e61af9760fd1bfd4b2ae2", 619)]
[TestCase(@"https://github.com/mhagger/git-imerge.git",
@"b1b67b0eb49b56d10633d6a4cb630e58a2cafd45", 619)]
[TestCase(@"https://github.com/Instagram/redis-faina.git",
@"5f732b09b19d588876434a02dc62357460bd3e68", 619)]
[TestCase(@"https://github.com/mrjoes/flask-admin.git",
@"c8132741efb7facb6d625741dcba591ade1129e8", 616)]
[TestCase(@"https://github.com/brack3t/django-braces.git",
@"c4491e223ba56e22489ac26f4bc17d674eae34f2", 615)]
[TestCase(@"https://github.com/nst/objc_dep.git",
@"e86e213a2e042ba209ef085d0aec30ac1d07bb8d", 614)]
[TestCase(@"https://github.com/carljm/django-model-utils.git",
@"b5b5864d5f8c18bfd65aa7dbdd5d4c2ddcec640e", 613)]
[TestCase(@"https://github.com/pika/pika.git",
@"c76d9eb3523b7bcad0fd966267cd43af57ea93d8", 613)]
[TestCase(@"https://github.com/flashingpumpkin/django-socialregistration.git",
@"9da9fb83c9bf79997ff81fe1378ab5ca3074b32b", 613)]
[TestCase(@"https://github.com/binarydud/pyres.git",
@"61fa5ea8611fa8717218fb95e3350340208666f4", 610)]
[TestCase(@"https://github.com/racker/falcon.git",
@"f42fb9254b73b6f6c67b4ee23aef0720039ad8d0", 609)]
[TestCase(@"https://github.com/scrapy/scrapely.git",
@"db9b5283a4890f05085916c8c43b11c03efe5731", 608)]
[TestCase(@"https://github.com/vvk-ehk/evalimine.git",
@"ffb90ba79e0d8959430e82fff977d2f9dd971fb0", 607)]
[TestCase(@"https://github.com/MongoEngine/mongoengine.git",
@"f099dc6a379e890e1cffdff6deaf6e7b32f6dbab", 606)]
[TestCase(@"https://github.com/hayaku/hayaku.git",
@"627dc63bc659ffb681f219ae6e6c039265c94979", 606)]
[TestCase(@"https://github.com/statsmodels/statsmodels.git",
@"d7ff1828cbd7c869f93aa86ea7dcd937fa90f5ff", 604)]
[TestCase(@"https://github.com/justquick/django-activity-stream.git",
@"ba30a751863bb80f6c86e25f7c296558e5c5b49a", 603)]
[TestCase(@"https://github.com/web2py/web2py.git",
@"53ecc17b57adb6291faca508c4df502bfda8e2c9", 601)]
[TestCase(@"https://github.com/myusuf3/octogit.git",
@"4d967faf5affbbf492a708d694abe290f738c2d9", 599)]
[TestCase(@"https://github.com/jdc0589/JsFormat.git",
@"2bca0e4fa8cede843fd59c5f3b34cfefdd0d3626", 598)]
[TestCase(@"https://github.com/matthewwithanm/django-imagekit.git",
@"5bb41bdccd91e94309231becaafab3c26cdaf605", 595)]
[TestCase(@"https://github.com/kennethreitz/flask-sockets.git",
@"6dc512a7a058786908b44f887b276e0154a89c99", 595)]
[TestCase(@"https://github.com/gpjt/webgl-lessons.git",
@"a227a62af468272a06d55d815971273628874067", 594)]
[TestCase(@"https://github.com/grangier/python-goose.git",
@"08762255aeeef11cd1f0520e9a0bb4e5ee152804", 592)]
[TestCase(@"https://github.com/adobe/brackets-shell.git",
@"bda5f517a3c09a565d3e6381b236357c94eef03d", 586)]
[TestCase(@"https://github.com/lisa-lab/pylearn2.git",
@"0b540e0d2f1f76e7f1d076f1375bc8c0c8ffa839", 582)]
[TestCase(@"https://github.com/agiliq/Django-Socialauth.git",
@"b0b1acb180dd955edcc9b9b9d086470b8c332de6", 581)]
[TestCase(@"https://github.com/cyberdelia/django-pipeline.git",
@"f74c486b4783be31f789171ceb9653941c4432af", 581)]
[TestCase(@"https://github.com/FogCreek/WebPutty.git",
@"4f5da5eb2b4668cbf3c15cf002feacd1d95d2ef7", 581)]
[TestCase(@"https://github.com/bear/python-twitter.git",
@"788f032752d9cadfcae5b35f7b9e6b4b39aeeec0", 580)]
[TestCase(@"https://github.com/zsh-users/zsh-completions.git",
@"dae8cb844a2b1da0006f0631ca74bb5d93ce145c", 578)]
[TestCase(@"https://github.com/kennethreitz/grequests.git",
@"914d45f3b8874c3e7d81f24eef822241399c575e", 578)]
[TestCase(@"https://github.com/tanepiper/SublimeText-Nodejs.git",
@"ff8ec6557c2fd2d8f67b9691a29d08939693a8fd", 575)]
[TestCase(@"https://github.com/Theano/Theano.git",
@"2e2a1cb559744cdb33e82c8642374444a4d2c4f1", 574)]
[TestCase(@"https://github.com/quantmind/pulsar.git",
@"ea08ba61d42f18b39ffd333c94261b50a6711b5d", 574)]
[TestCase(@"https://github.com/sciyoshi/pyfacebook.git",
@"ebc4e7c53a53de2a1c4709a07e53e184846e58d1", 570)]
[TestCase(@"https://github.com/hylang/hy.git",
@"e5e1489f0f1c6bf81d4d90778d1a8f8eed270f5a", 568)]
[TestCase(@"https://github.com/PyMySQL/PyMySQL.git",
@"db83270d5eb0e44baa5d78e504c6376e61077417", 568)]
[TestCase(@"https://github.com/ckan/ckan.git",
@"460e6bc69978574490b945500e32356a09098dc4", 567)]
[TestCase(@"https://github.com/isnowfy/pydown.git",
@"fc159f53ffe346a8bf183ba13b8e76a83ef14620", 567)]
[TestCase(@"https://github.com/bfontaine/term2048.git",
@"aa9517e2d943e8b2a06d8f228452cf078c66a2dd", 567)]
[TestCase(@"https://github.com/nose-devs/nose.git",
@"2e0275500c49b0227c564772fe41e99d21392026", 566)]
[TestCase(@"https://github.com/kartograph/kartograph.py.git",
@"f547ca8f36db98a0e920109169a2c074f11f6a24", 566)]
[TestCase(@"https://github.com/Cue/scales.git",
@"e60d39dfae951e880adb74a2a34cec0256f728ce", 565)]
[TestCase(@"https://github.com/dlitz/pycrypto.git",
@"2d1aecd731f91f7367ef2a4069d305e2a1b488c0", 562)]
[TestCase(@"https://github.com/feincms/feincms.git",
@"a0e392a81e8752215acd846e0e2cfbef7d0c0fc2", 561)]
[TestCase(@"https://github.com/ninja-ide/ninja-ide.git",
@"d62fb04d7c06b4173d5217c545dc8581b73ee307", 560)]
[TestCase(@"https://github.com/tschellenbach/Feedly.git",
@"8d85824669261b8048a62c9c9a091d5c724d9687", 560)]
[TestCase(@"https://github.com/tooxie/shiva-server.git",
@"2407650f365806debc892471e9d59ec1bc67f9d4", 559)]
[TestCase(@"https://github.com/idan/oauthlib.git",
@"393d09ad41d350d2b5cc8c5072cc5cf191ce8638", 558)]
[TestCase(@"https://github.com/disqus/gargoyle.git",
@"2278a0ba81952879ccd8996d7dcb29f0fef8057b", 557)]
[TestCase(@"https://github.com/miracle2k/webassets.git",
@"dc8219584e9f23cbe169b58c0c7b37e893517921", 556)]
[TestCase(@"https://github.com/SublimeText/LaTeXTools.git",
@"517c5a3c3510735d6417e893d1fbdf1245eabb77", 556)]
[TestCase(@"https://github.com/tomerfiliba/plumbum.git",
@"788cddc3464f811e0445ce6dc94f4b3399a49206", 550)]
[TestCase(@"https://github.com/nryoung/algorithms.git",
@"c127897a2dead1f0d6c5af9703705344806cbd5e", 549)]
[TestCase(@"https://github.com/mitsuhiko/flask-sqlalchemy.git",
@"d4560013c1c51ef035381e35dd42a1628bb212ee", 548)]
[TestCase(@"https://github.com/olgabot/prettyplotlib.git",
@"5e0056d823ccc25af3fd9fc4665b67c3a515a810", 547)]
[TestCase(@"https://github.com/laiwei/thepast.git",
@"e89476e08421426fd1e119ba8633709f3dcc2236", 546)]
[TestCase(@"https://github.com/johnboxall/django-paypal.git",
@"64566bcb05ad8cc75bc21d37ed82c952aaafaa6f", 545)]
[TestCase(@"https://github.com/Instagram/python-instagram.git",
@"3fe546d75714e17ce068b67b75c9842628b55b78", 544)]
[TestCase(@"https://github.com/kmmbvnr/django-jenkins.git",
@"bd36be6485001d2770b513b623a3059a773e5b96", 539)]
[TestCase(@"https://github.com/cobrateam/splinter.git",
@"4f20b750cee8cddb6f1130b24b434c834324602c", 539)]
[TestCase(@"https://github.com/thauber/django-schedule.git",
@"328d1db05dbdac438477f207d65739e191bda129", 538)]
[TestCase(@"https://github.com/shazow/urllib3.git",
@"98c6fbfc27d7d51327ad85a85a80dd4fe096cc79", 537)]
[TestCase(@"https://github.com/VitaliyRodnenko/geeknote.git",
@"2da5ec371273d9cff6287a0169bb534630513d58", 535)]
[TestCase(@"https://github.com/jtauber/django-notification.git",
@"28837ea1fcf67a9a544db02a5379fdf668687546", 530)]
[TestCase(@"https://github.com/apitrace/apitrace.git",
@"8d6c36d74ba9aefbc8c3618fc93dd4907a0dbf5e", 528)]
[TestCase(@"https://github.com/nurv/BicaVM.git",
@"34ce88ee6250659e0d678a50cd632d4576699d51", 526)]
[TestCase(@"https://github.com/aichallenge/aichallenge.git",
@"4237971f22767ef7f439d297e4e6ad7c458415dc", 526)]
[TestCase(@"https://github.com/mailgun/flanker.git",
@"0579da9a2cc9b8696d8071c4f1e07140d940b386", 526)]
[TestCase(@"https://github.com/kliment/Printrun.git",
@"71fced82d2e2e85b23f3fdd04962ef4581798544", 525)]
[TestCase(@"https://github.com/jacobian/django-deployment-workshop.git",
@"b0ee18d77d2aa0421b1adc7ad83e7b07cf09e0a9", 524)]
[TestCase(@"https://github.com/praw-dev/praw.git",
@"d22475cbd17d43f3654bb4d1359d4ed356668ff6", 522)]
[TestCase(@"https://github.com/j2labs/brubeck.git",
@"277e583910a34c6a57f4f4571c7a030e7f6594fa", 521)]
[TestCase(@"https://github.com/qtile/qtile.git",
@"820ef1f96720a9d799d3e803b9c2c23962b28df9", 520)]
[TestCase(@"https://github.com/seatgeek/sixpack.git",
@"c6c60ec01b42d6c7dd83b8e921188376f3ab4624", 520)]
[TestCase(@"https://github.com/twissandra/twissandra.git",
@"004b5eccd13af3ba969a35950d95314fbcc9ffde", 519)]
[TestCase(@"https://github.com/reviewboard/reviewboard.git",
@"a6b99c8bdf12a281c4ebe9742c5fd0d5e2d28681", 516)]
[TestCase(@"https://github.com/wal-e/wal-e.git",
@"2c3b4ae91507f08d822a8607e0cd892f750741e5", 516)]
[TestCase(@"https://github.com/aaugustin/django-c10k-demo.git",
@"87c944cb5f0ff29349c0c78f65099850e42976ed", 513)]
[TestCase(@"https://github.com/mitsuhiko/itsdangerous.git",
@"2af6ef11079e94b06931c8df87f943bc89a1d4be", 513)]
[TestCase(@"https://github.com/dropbox/responses.git",
@"3a4651cdb656a7c7a9a63c417d1cb3f2d04d7cd5", 510)]
[TestCase(@"https://github.com/guillermooo/Vintageous.git",
@"03a36d3df88bcdf59eb9358c875f161c839d1a10", 509)]
[TestCase(@"https://github.com/euske/pdfminer.git",
@"b09c37902fc5f164668285df532d92a652be400c", 509)]
[TestCase(@"https://github.com/rabbitmq/rabbitmq-tutorials.git",
@"16f29f18b88aac6c2987e4eabe56d4a8508a11f6", 509)]
[TestCase(@"https://github.com/celery/kombu.git",
@"94af8d5b4319285439921504ded3af9684ac8def", 508)]
[TestCase(@"https://github.com/m0mchil/poclbm.git",
@"2ae15b77df1d17d2ec2748673ba2e8e0a01891c5", 507)]
[TestCase(@"https://github.com/django-nose/django-nose.git",
@"af943c055b5c2754dc1d8b4d33861e7a409e6ff6", 506)]
[TestCase(@"https://github.com/coto/gae-boilerplate.git",
@"6d73b56ef453ebf72b415335485d528db8cce577", 505)]
[TestCase(@"https://github.com/pydanny/django-uni-form.git",
@"159f539e2fb98752b7964d75e955fc62881c28fb", 503)]
[TestCase(@"https://github.com/aluzzardi/wssh.git",
@"271d786d945e1d1937d5a363f4ef55905331f8ef", 502)]
[TestCase(@"https://github.com/Zulko/moviepy.git",
@"cb8a03c3ec878904af8b4c265268c6554bc27b9e", 501)]
[TestCase(@"https://github.com/darklow/django-suit.git",
@"1e3b7f44b1af7fe1661511efc9e80173a5d33fff", 498)]
[TestCase(@"https://github.com/schacon/hg-git.git",
@"813d79a17d6e84fe71e8c8df455c776495996acb", 497)]
[TestCase(@"https://github.com/getnikola/nikola.git",
@"70f2f4c9a10b5d533485cab8919d8956c2f933ab", 495)]
[TestCase(@"https://github.com/graphite-project/carbon.git",
@"af331e4b45322c65a5bb8a15493a5774a8810de1", 495)]
[TestCase(@"https://github.com/mcedit/mcedit.git",
@"494422913aee9355257248b0b9b2e73da6b0ef2c", 495)]
[TestCase(@"https://github.com/thiderman/doge.git",
@"15b6d1de1419c364ac87da2079d866a1d5709a99", 495)]
[TestCase(@"https://github.com/dabeaz/bitey.git",
@"cd3390cc79721e9e0f1b2c3273f5d7ab565ba424", 491)]
[TestCase(@"https://github.com/worldveil/dejavu.git",
@"e1454bf1ea0ee661fef8ac0575439e224bc26e0b", 491)]
[TestCase(@"https://github.com/waylan/Python-Markdown.git",
@"51713a10e3de1cbf0b29936d81dc061a9f73b819", 490)]
[TestCase(@"https://github.com/fivesheep/chnroutes.git",
@"58267c32aa6d617f02aa9b3623c1e99322d08afd", 490)]
[TestCase(@"https://github.com/divegeek/uscode.git",
@"03ecde92c13c12360e458fd0eb341fd155967eab", 487)]
[TestCase(@"https://github.com/seomoz/shovel.git",
@"d655c1ba67ae42adf636ccf7dc407efe059e8087", 487)]
[TestCase(@"https://github.com/myusuf3/delorean.git",
@"5834f2e636822d7f1b1159c7cecf1a19a0920bf7", 487)]
[TestCase(@"https://github.com/FriendCode/gittle.git",
@"ef214f472e5e1b696dc3eb8cd4440a0db8eb82a1", 485)]
[TestCase(@"https://github.com/gregmuellegger/django-floppyforms.git",
@"8ae4f2c9596d26ce6c0b4afba53cf38460a24b6f", 483)]
[TestCase(@"https://github.com/sindresorhus/editorconfig-sublime.git",
@"fb574c28d70dc88dfda802e9dea8d8d2d27cbcd0", 483)]
[TestCase(@"https://github.com/kvh/ramp.git",
@"d76abf24a77ca831d6e43104bc3adc12c850789f", 483)]
[TestCase(@"https://github.com/tarekziade/boom.git",
@"2436d7740351a1351aa239a51d18edc5c261364e", 481)]
[TestCase(@"https://github.com/sabnzbd/sabnzbd.git",
@"2eed355e9ccc836d10fac83a904aa94939b3ac46", 480)]
[TestCase(@"https://github.com/kovidgoyal/calibre.git",
@"9c9759684e55553c72a69c7b52ef3c896a8ce34f", 477)]
[TestCase(@"https://github.com/pythoncn/june.git",
@"cc533b2c4add6912642f9d71e854908726ced2fa", 476)]
[TestCase(@"https://github.com/pycassa/pycassa.git",
@"7ac677f0da7965b1126be4f484ec9ec0eaa88acc", 475)]
[TestCase(@"https://github.com/mrjoes/tornadio2.git",
@"c251c65b2f6921feafc72e39ece647cfe05e9909", 475)]
[TestCase(@"https://github.com/99designs/colorific.git",
@"f5975cd1e7736c8ccb08c1cf41c5120b4902f952", 473)]
[TestCase(@"https://github.com/dae/anki.git",
@"b99e349695ffcf0b5889305bf091c4f57e3faf84", 472)]
[TestCase(@"https://github.com/twoscoops/django-twoscoops-project.git",
@"197d791b80ef52f0ec09d17124831e177f0f2e5a", 471)]
[TestCase(@"https://github.com/lunixbochs/SublimeXiki.git",
@"10540b05c59ae9987b7387f909137c327cc25842", 469)]
[TestCase(@"https://github.com/iambus/youku-lixian.git",
@"2accaf84d7ee15b93ab1e852867f61ba41fbaa16", 469)]
[TestCase(@"https://github.com/apache/libcloud.git",
@"04884dca384de6b849bf23c2ce395bf1017894c6", 468)]
[TestCase(@"https://github.com/gcollazo/Fabulous.git",
@"03a99af8d91fc41952bcb9885ad14c415feeb88b", 468)]
[TestCase(@"https://github.com/daviddrysdale/python-phonenumbers.git",
@"6686d64d8d8da6d41e4cfb04f2d216b5aee12763", 466)]
[TestCase(@"https://github.com/brainsik/virtualenv-burrito.git",
@"5c4056f15755fee950a9ac1ada538c705422b8c5", 466)]
[TestCase(@"https://github.com/mirumee/satchless.git",
@"23ad18bf0ce8e309e64a689acba885e64dfdcee4", 465)]
[TestCase(@"https://github.com/apresta/tagger.git",
@"58d491da3919be866ef0236eeba91bbee7aebebe", 464)]
[TestCase(@"https://github.com/mihaip/readerisdead.git",
@"38b2310e9517ba6970072904a2e323ebd5229d0e", 463)]
[TestCase(@"https://github.com/ilektrojohn/creepy.git",
@"9f60449897e12a7a6f8fb53e602ffc57f2a74f1e", 462)]
[TestCase(@"https://github.com/biopython/biopython.git",
@"44e943fd5c1e1a2ee6d8520eb01ab5e8114b1b56", 461)]
[TestCase(@"https://github.com/zedshaw/python-lust.git",
@"9e4f19f90f3757d4f1e23c9e3439aefe962f5796", 461)]
[TestCase(@"https://github.com/mitsuhiko/logbook.git",
@"00df021656dea211f8376b5059c0e3f3e59eceaf", 460)]
[TestCase(@"https://github.com/jbalogh/django-cache-machine.git",
@"449861a61bcf096b792039128f044659e3e96eb6", 460)]
[TestCase(@"https://github.com/maxcountryman/flask-login.git",
@"29a1689df2c234e943785e33a11887d8d9a37382", 459)]
[TestCase(@"https://github.com/bitly/asyncmongo.git",
@"0c43d9e15ec3889ad3bb23b9f9aa6987cfbaa94d", 459)]
[TestCase(@"https://github.com/fail2ban/fail2ban.git",
@"1369701f8704e0a11a9d89da86bef7a4c1fef32b", 458)]
[TestCase(@"https://github.com/martinrusev/imbox.git",
@"9a0af18b0bb519008d6190028cabf1277c76112c", 458)]
[TestCase(@"https://github.com/rdegges/django-skel.git",
@"d4631bb2944ca22f49354a9b1a30af1d966e3f04", 458)]
[TestCase(@"https://github.com/adafruit/Adafruit-Raspberry-Pi-Python-Code.git",
@"2d4678fdccec1b93d8d69ba7768f6698545b2c5f", 456)]
[TestCase(@"https://github.com/mininet/mininet.git",
@"14e14f1b8775db545125e9f679c5a1f768db58d4", 455)]
[TestCase(@"https://github.com/yandex-load/yandex-tank.git",
@"bf9f9ab9d8a4ec31d131d14016da8ad634f21168", 455)]
[TestCase(@"https://github.com/adamn/python-webkit2png.git",
@"6488a1fbd06d5479f8592af47acc73834647e837", 455)]
[TestCase(@"https://github.com/SublimeText/CTags.git",
@"3cfd53b819a8d3684f9ef286f5e7318ba39ca1eb", 454)]
[TestCase(@"https://github.com/mwhite/resume.git",
@"6fa4fa75a80fc9080a10659a02eb33d068c173a9", 452)]
[TestCase(@"https://github.com/Kozea/WeasyPrint.git",
@"a6a9f15826d77d538ef5c209cb3826cc4588c721", 452)]
[TestCase(@"https://github.com/isnowfy/snownlp.git",
@"ebd38b8e2eb31ef5007a73fcc595ed1ca3c73f7c", 451)]
[TestCase(@"https://github.com/Kozea/pygal.git",
@"aa344741e3cac987b1be5501dc08df07dcdc419b", 451)]
[TestCase(@"https://github.com/an0/Letterpress.git",
@"1d020ba375c4edd4ede3591c6668d787a03859c4", 449)]
[TestCase(@"https://github.com/gitpython-developers/GitPython.git",
@"e6a2942a982c2541a6b6f7c67aa7dbf57ed060ca", 449)]
[TestCase(@"https://github.com/9miao/firefly.git",
@"a4483d41c4afd680c84cb5e1a16d9d421bcbd493", 448)]
[TestCase(@"https://github.com/xenith/django-base-template.git",
@"c6d0d29458f01b1a136fe66fe09163c4803f51f9", 447)]
[TestCase(@"https://github.com/bramcohen/DissidentX.git",
@"c1cd4de3c082578b1f936f05c55d8dad1d3912ad", 446)]
[TestCase(@"https://github.com/tobami/littlechef.git",
@"7661a8c5da8fc8518a7456446a3d66f129b10b20", 445)]
[TestCase(@"https://github.com/forrestv/p2pool.git",
@"f0eeb48c31abd3a59b65ab060e4daa0895772ddd", 445)]
[TestCase(@"https://github.com/LindseyB/starwars-dot-gif.git",
@"454599e2eb53212832e33ce1eb78e1859b4e99be", 445)]
[TestCase(@"https://github.com/Diaoul/subliminal.git",
@"31c2b2135064d2f2661fe878927f343ee701691d", 443)]
[TestCase(@"https://github.com/o/simmetrica.git",
@"da4baa5f153fd1e6060c9d0b33d74ad5b373eca0", 442)]
[TestCase(@"https://github.com/rubik/radon.git",
@"d937f97196a8fc3edfd7870a2a066c176c2cfcff", 442)]
[TestCase(@"https://github.com/lisa-lab/DeepLearningTutorials.git",
@"3f3234bc7800c58862950107736fb4fa07d06641", 442)]
[TestCase(@"https://github.com/Birdback/manage.py.git",
@"068ae414fa5d54700dd9f68bb2503506662df165", 441)]
[TestCase(@"https://github.com/lincolnloop/salmon.git",
@"eaf4b580c002d7099ce3089d99f4f44470e7e12f", 441)]
[TestCase(@"https://github.com/saghul/pythonz.git",
@"e576f2bbbe0d27e343edb6839ac7c67ebac2047a", 440)]
[TestCase(@"https://github.com/cuckoobox/cuckoo.git",
@"3ae4aa81d981e94b6e3de1131cd80189d4d3dff6", 440)]
[TestCase(@"https://github.com/musalbas/heartbleed-masstest.git",
@"bc10baf20e5a1a29610443a67e14340701101f20", 440)]
[TestCase(@"https://github.com/socketubs/Sublimall.git",
@"1fa47261ef5dc7a946ce7f90eb37029c6682a0e1", 439)]
[TestCase(@"https://github.com/jmcarp/robobrowser.git",
@"c6b044250751ab76f25c4aa0ba33d143dc2bea7a", 438)]
[TestCase(@"https://github.com/burnash/gspread.git",
@"991f69241c44ccd62a66331d795aa11652c7a833", 438)]
[TestCase(@"https://github.com/toscanini/maestro.git",
@"5f7537acece4612ef0c9a5b8f59f060aa980468e", 437)]
[TestCase(@"https://github.com/FZambia/centrifuge.git",
@"47dbb045927cccaba5bb019efbfb55202aee12d8", 436)]
[TestCase(@"https://github.com/aparo/pyes.git",
@"30cb89714b8a46f63ed8b7d021e0201146b5d2a9", 430)]
[TestCase(@"https://github.com/lmacken/pyrasite.git",
@"13a279fcd0e97ae4241d84fe92a1fab7ff76f256", 430)]
[TestCase(@"https://github.com/jezdez/django-avatar.git",
@"206682ce0a2b554f35dc24fd2803e8123f846daa", 427)]
[TestCase(@"https://github.com/simpleai-team/simpleai.git",
@"5bab65d98cd2c37ed9f5133b2dd2ab95aae23257", 427)]
[TestCase(@"https://github.com/locustio/locust.git",
@"942d4e24cd12900f2349b132bcdcc2f3f8af5b3b", 427)]
[TestCase(@"https://github.com/SublimeText/TrailingSpaces.git",
@"841f667839d3086800cb00cc8262a5312df92ce4", 426)]
[TestCase(@"https://github.com/devsnd/cherrymusic.git",
@"709ed846dc2bc953d3173b9229ec2ce05690aeba", 426)]
[TestCase(@"https://github.com/carmaa/inception.git",
@"1878c9861a0cb44926eb8cf594634694cd82c5b6", 425)]
[TestCase(@"https://github.com/django-nonrel/mongodb-engine.git",
@"cb2ff80f052b7551d6e9b79fa9333d63394b038b", 424)]
[TestCase(@"https://github.com/mattupstate/overholt.git",
@"9b2e92ea235de94290e7a104a1430684222564fa", 424)]
[TestCase(@"https://github.com/sehmaschine/django-filebrowser.git",
@"4341782239b84af109a51adfb3b950ebd356bd0b", 421)]
[TestCase(@"https://github.com/soimort/you-get.git",
@"74ae901c84fd1fa100b303db16c82ace1dbbf868", 420)]
[TestCase(@"https://github.com/mrjoes/sockjs-tornado.git",
@"b68096e9d30d1e37e39f6d502dbaf46f688704c3", 420)]
[TestCase(@"https://github.com/jceb/vim-orgmode.git",
@"96dfdfbde8739f665a8063e6a472a9551267160d", 419)]
[TestCase(@"https://github.com/mjhea0/flaskr-tdd.git",
@"19360b4ac326fd3ed692e1c43b12245c757edf01", 419)]
[TestCase(@"https://github.com/hut/ranger.git",
@"0ba6150eefe3572af00f801534228ad83c8f625c", 418)]
[TestCase(@"https://github.com/ericflo/django-pagination.git",
@"47e7ec874cd7dddda5ed13ffb6993a64dced2537", 417)]
[TestCase(@"https://github.com/opsschool/curriculum.git",
@"4dc2e8dc2b366394a86a0dbdbf9bebb1cd74eaee", 417)]
[TestCase(@"https://github.com/gregs1104/pgtune.git",
@"da57e00e18aec545c70af22bac97a284c357373a", 414)]
[TestCase(@"https://github.com/davidcrawford/chronic.git",
@"6118abb69b4b0feb9f811a8e224bfda186890896", 413)]
[TestCase(@"https://github.com/python/pythondotorg.git",
@"42d3c417e7d11127a424a3ef8b6c0e591c612a2c", 412)]
[TestCase(@"https://github.com/mdipierro/workflow.git",
@"4a932ed29f2108302741c9a4d22e8dbc1c5a97b6", 412)]
[TestCase(@"https://github.com/scipy-lectures/scipy-lecture-notes.git",
@"77a810edd4adb7d7d1540d87df4f7f1c27b70c4a", 412)]
[TestCase(@"https://github.com/mongolab/dex.git",
@"56faf16c953b212f685dfe160d67ab011ce1f4f6", 412)]
[TestCase(@"https://github.com/zapier/django-drip.git",
@"260e3164be9c846e741da5d48a41b68806053574", 411)]
[TestCase(@"https://github.com/sebleier/django-redis-cache.git",
@"4a0911a5f27fc64f3a7f955546263a306e77e59b", 410)]
[TestCase(@"https://github.com/SublimeLinter/SublimeLinter3.git",
@"ec6ba872f831944097aa0540733ff2eea96b8259", 410)]
[TestCase(@"https://github.com/jtauber/django-mailer.git",
@"9780e1d68f9c7fd07bb848d38d6e3bcca28d0ca6", 408)]
[TestCase(@"https://github.com/openstack/horizon.git",
@"38a49a07dfa6848371a90a5fd081636e90db3f07", 407)]