forked from exKAZUu/RepositoryProbe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlua.txt
1850 lines (1850 loc) · 97.7 KB
/
lua.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/kennyledet/Algorithm-Implementations.git",
@"ec423a1984fa923e117053c114c92ae86d32bfd4", 890)]
[TestCase(@"https://github.com/leafo/moonscript.git",
@"1527a5f696f1dda718f44bdd28b6615f2ab650cf", 683)]
[TestCase(@"https://github.com/hawkthorne/hawkthorne-journey.git",
@"998edb55ca7625ea5473228a794884e4d7c633c2", 552)]
[TestCase(@"https://github.com/mason-larobina/luakit.git",
@"993d814c6a51bf50ec0424e65ce2dc35f4aa435f", 513)]
[TestCase(@"https://github.com/axkibe/lsyncd.git",
@"85e95ef15066d0b594144e155c3fa955adae68f3", 504)]
[TestCase(@"https://github.com/koreader/koreader.git",
@"f1a8970adb94a6a43cff4d3d16769931039e1f73", 466)]
[TestCase(@"https://github.com/SnabbCo/snabbswitch.git",
@"6b88f9c5c70e74aafad691654b677aa492580a96", 457)]
[TestCase(@"https://github.com/kikito/middleclass.git",
@"f67092082019d9640db1084c4128525141b722d5", 391)]
[TestCase(@"https://github.com/pkulchenko/ZeroBraneStudio.git",
@"95452706a059c60fb34e88a0afff44ba4a9032ac", 376)]
[TestCase(@"https://github.com/leafo/lapis.git",
@"f2cdcd8179bc0d57560df5bbd95ee03f26214ef7", 374)]
[TestCase(@"https://github.com/rtsisyk/luafun.git",
@"3d44c0841dbc93b645546bb13868550089bfa076", 352)]
[TestCase(@"https://github.com/koreader/kindlepdfviewer.git",
@"c5beab2ded22d6bd480604c2bb87f3479d4b3b85", 350)]
[TestCase(@"https://github.com/copycat-killer/awesome-copycats.git",
@"2b565ee240c883bbb4115106eef66f9f1508a864", 289)]
[TestCase(@"https://github.com/tylerneylon/pacpac.git",
@"cad99bdd64346dbc3180ee611ea502197da8b414", 273)]
[TestCase(@"https://github.com/exebetche/vlsub.git",
@"71ef0ef295cafb5477769d9ba3975c6c2ba8d609", 259)]
[TestCase(@"https://github.com/ignacio/LuaNode.git",
@"bca3678ec44334b990d026c60ac51d15a5ef2a06", 249)]
[TestCase(@"https://github.com/stevedonovan/Penlight.git",
@"6118a923f5ef4a21a9ae432d42707c5f4f0446a1", 248)]
[TestCase(@"https://github.com/zedshaw/Tir.git",
@"4c1bdfa5b421e8eb9d3724928055da2728130d40", 241)]
[TestCase(@"https://github.com/CorsixTH/CorsixTH.git",
@"a7da0b72a7895d1e253963bb68c32ae6b226991f", 238)]
[TestCase(@"https://github.com/Olivine-Labs/busted.git",
@"2ded1f55a2314cee25d4a5689e34e7f92e47ac46", 224)]
[TestCase(@"https://github.com/SpiderLabs/owasp-modsecurity-crs.git",
@"6b9e47e4c210a9f2824e042d54b590506982b93a", 215)]
[TestCase(@"https://github.com/mirven/underscore.lua.git",
@"1bb487f5a0e523a4438a9d126a7ed44accea5a5a", 212)]
[TestCase(@"https://github.com/ymobe/rapanui.git",
@"595076d5706695a8b9b8de393b749d7d90a414a2", 201)]
[TestCase(@"https://github.com/keplerproject/luarocks.git",
@"999e27d74abd0bc53165d2ce2642fb5a7af81f40", 200)]
[TestCase(@"https://github.com/nrk/redis-lua.git",
@"4408c3d686ffd1f2689c0561a166821785cc09ec", 186)]
[TestCase(@"https://github.com/gamesys/moonshine.git",
@"ca6d7a57bfb676caf409e7398a448f90eb139b47", 167)]
[TestCase(@"https://github.com/garrynewman/garrysmod.git",
@"1bd8973a763e4bb3f9dcb61bacc25acab2769df8", 162)]
[TestCase(@"https://github.com/tekkub/wow-ui-source.git",
@"e9e777a6d1baca29d6253260a69463767d8d9b00", 162)]
[TestCase(@"https://github.com/malkia/ufo.git",
@"bdcba300f91c38a2d4652d644b0de9f64ad9936c", 154)]
[TestCase(@"https://github.com/basecamp/intermission.git",
@"bb75e1ec83dea67e4db4a6a7c00bc4fcd477eae0", 150)]
[TestCase(@"https://github.com/wiremod/wire.git",
@"231148a4da77173768e823a64842753243ec304e", 148)]
[TestCase(@"https://github.com/minetest/minetest_game.git",
@"15740ffd3d1ea1af182a8607c600f3af414c2c73", 145)]
[TestCase(@"https://github.com/bjc/prosody.git",
@"701fa72ca55909888b3fd428724128c654d8b543", 142)]
[TestCase(@"https://github.com/vrld/hump.git",
@"e10fa66e60c5984a8d92801163d23811b7ac509f", 142)]
[TestCase(@"https://github.com/justincormack/ljsyscall.git",
@"19eb826a46c177c2f93f9ec8985afc684beb1a78", 140)]
[TestCase(@"https://github.com/osadchuk/Corona-SDK.tmbundle.git",
@"86ac8c832b0b9234a9859c5c49e704d4cd7899fb", 140)]
[TestCase(@"https://github.com/igrigorik/tokyo-recipes.git",
@"b2b34fe52ca7163d964954f408d9f787c408670a", 139)]
[TestCase(@"https://github.com/fab13n/metalua.git",
@"355ff0bc201e00856ba20d82c65b14ffa6fcfe4b", 136)]
[TestCase(@"https://github.com/kikito/lua_missions.git",
@"330d7702417c4b18358ab822ba676058892ad889", 133)]
[TestCase(@"https://github.com/diegonehab/luasocket.git",
@"6d5e40c324c84d9c1453ae88e0ad5bdd0a631448", 131)]
[TestCase(@"https://github.com/haberman/gazelle.git",
@"af0fb1b2bcaae513e1ff54d70f022cdc97a93377", 129)]
[TestCase(@"https://github.com/loveshell/ngx_lua_waf.git",
@"2b32a34dfc67e8bbb677987319a30357d5ae6e14", 127)]
[TestCase(@"https://github.com/Yonaba/Jumper.git",
@"2479afadf3d50e30ea9f9ab104e6229176d57339", 127)]
[TestCase(@"https://github.com/ansca/Ghosts-vs.-Monsters.git",
@"7c036c0d11f279c5dace9dcda4f5ad2242a8ca77", 124)]
[TestCase(@"https://github.com/FPtje/DarkRP.git",
@"ed1a0db0afc6302353d474a73777948f230a3d1d", 123)]
[TestCase(@"https://github.com/mikar/awesome34-themes.git",
@"312cbc31b271afa164a81d51822de7d54b1153f3", 117)]
[TestCase(@"https://github.com/kernelsauce/turbo.git",
@"d1411bbbcbe18cb20a7d91bb95505d952993c31f", 115)]
[TestCase(@"https://github.com/oneoo/alilua.git",
@"7ce84488504cd364aa5d86acceff8fb8203b9b4f", 112)]
[TestCase(@"https://github.com/kikito/inspect.lua.git",
@"e67a7471d4dd9e22e26b3620ce8701c0e479cb82", 112)]
[TestCase(@"https://github.com/daogangtang/bamboo.git",
@"e8e58814b1c511396589846ed3f7cb57a3222d48", 111)]
[TestCase(@"https://github.com/Kadoba/Advanced-Tiled-Loader.git",
@"0cc155d14406feb0335d455afd1c1fdd8b028671", 110)]
[TestCase(@"https://github.com/appwilldev/moochine.git",
@"9f643a5b51fb132c11ec1c870e4979cf03012992", 109)]
[TestCase(@"https://github.com/Fluorohydride/ygopro.git",
@"16a98132749215b8ca27f6e479976ef42c4cd0fc", 107)]
[TestCase(@"https://github.com/fjolnir/TLC.git",
@"3b0300d2dac913d2d43162cde52479a2d3986ecb", 103)]
[TestCase(@"https://github.com/NikolaiResokav/LoveFrames.git",
@"4dfffef2bc8fd5053e714533b7e6e701722c7a89", 101)]
[TestCase(@"https://github.com/haste/oUF.git",
@"955f9424bf53b149fb03822bb2082f8888241c78", 99)]
[TestCase(@"https://github.com/Shestak/ShestakUI.git",
@"42527a9c4b81c3c1f762b73d4e777cd0fbd3a852", 98)]
[TestCase(@"https://github.com/stevedonovan/LDoc.git",
@"511dfe7df01f92da03c639c5f56495c0c31b6e2b", 96)]
[TestCase(@"https://github.com/pavouk/lgi.git",
@"3feb90f4c0c20312e646fb8b1106a5c44a04293e", 93)]
[TestCase(@"https://github.com/majek/lua-channels.git",
@"599b27ee7496cef488a057aad86e1ce472190a78", 93)]
[TestCase(@"https://github.com/makotok/Hanappe.git",
@"b1a759fe9606bfc49a8df458629099be87ab86f5", 92)]
[TestCase(@"https://github.com/virgo-agent-toolkit/rackspace-monitoring-agent.git",
@"5197adcd93c61db3c30b1a45a6fc6dbd1d95d66f", 90)]
[TestCase(@"https://github.com/lefcha/concurrentlua.git",
@"74405929dca29b2c61fcb9e94c6b6d8799bb148a", 90)]
[TestCase(@"https://github.com/pkulchenko/MobDebug.git",
@"c2b9988ccda7998be466da67690316b45fd3469a", 88)]
[TestCase(@"https://github.com/davidm/lua-inspect.git",
@"ca3988019a2f5f1b3f4e94b285eb6e77e5923dd3", 88)]
[TestCase(@"https://github.com/terceiro/awesome-freedesktop.git",
@"e514e742864495f23fd725f8c596f41a01d67795", 86)]
[TestCase(@"https://github.com/norman/telescope.git",
@"c80b928e306cad7195e1ce5b92ddcdcb0a2c50b2", 85)]
[TestCase(@"https://github.com/kikito/tween.lua.git",
@"b14444fe3c6bb0a530b97109f3ce2f5e32f55839", 85)]
[TestCase(@"https://github.com/romockee/powerarrow.git",
@"530d208c76280d4f6f566394e6f6a7ebf18fc61e", 85)]
[TestCase(@"https://github.com/crosslife/LoveClear.git",
@"dd9a81488bbf598e3e279c545a99c562f201d41b", 80)]
[TestCase(@"https://github.com/LuaAV/LuaAV.git",
@"7a5dd24de0c31f0d46b27440363408d1a987b044", 79)]
[TestCase(@"https://github.com/nrk/mercury.git",
@"13c85348e059dd24f2c26cf9b4e259fa2d1001c8", 77)]
[TestCase(@"https://github.com/richardhundt/shine.git",
@"a3cdf3bfc9645f90572fdd80951302edf6681ede", 76)]
[TestCase(@"https://github.com/jtarchie/underscore-lua.git",
@"a98846874399916a8689dd5bfe7cafd373128a66", 75)]
[TestCase(@"https://github.com/copycat-killer/lain.git",
@"4c3cf3c0b78624242be877a8454a3cd7c2679d45", 73)]
[TestCase(@"https://github.com/keplerproject/xavante.git",
@"58188b9da0d6ad621e5da6089684c5273936b398", 73)]
[TestCase(@"https://github.com/Cue/hop.git",
@"3e1b8e6bf535fb12f1ad3348473c64acd3647993", 72)]
[TestCase(@"https://github.com/vrld/HardonCollider.git",
@"fb8c0511cf85b86327e34f9356e1e8cf9aee8b47", 72)]
[TestCase(@"https://github.com/lipp/lua-websockets.git",
@"9ade24fc972cfc80b5d1d31e1d92ec1d28b7c4be", 72)]
[TestCase(@"https://github.com/harningt/luajson.git",
@"827425b10152f8cdc515e4ffb900338506e28910", 71)]
[TestCase(@"https://github.com/AdamBuchweitz/CrawlSpaceLib.git",
@"471868fe6cad288cac57281b5218cdd711b826eb", 71)]
[TestCase(@"https://github.com/tony/awesome-config.git",
@"2957a1bd888a6a99666f3a67c87d0333474736a9", 71)]
[TestCase(@"https://github.com/weshoke/Lust.git",
@"174ee908a3b0ee4ca71c92f314fd0efa82498035", 71)]
[TestCase(@"https://github.com/miko/Love2d-samples.git",
@"50a8b4b43d517081a83d036e4510904402dcd7d2", 71)]
[TestCase(@"https://github.com/Kiwi/clyde.git",
@"dcdba8de3a3be3685a72a1fcab24080124242a7e", 70)]
[TestCase(@"https://github.com/Neopallium/lua-handlers.git",
@"ae93f442175f4f03dd612cafa073df74a8fe626f", 70)]
[TestCase(@"https://github.com/Stabyourself/mari0.git",
@"b1412a08a1411b2f237cdd276aee27df008cb06e", 69)]
[TestCase(@"https://github.com/mcurry/html_cache.git",
@"83af9d9ee24b94b99387d8171b78e388388be756", 68)]
[TestCase(@"https://github.com/liseen/lua-resty-http.git",
@"32d951bb47ebddb82b0e3bf1a6eb0af4a6df9f1e", 68)]
[TestCase(@"https://github.com/cedlemo/blingbling.git",
@"7ac39503e2811042cf0d83a0874d230779a710ef", 66)]
[TestCase(@"https://github.com/stevedonovan/Lake.git",
@"065ac452fd43be501cab587e8a30d3c9b7479726", 66)]
[TestCase(@"https://github.com/nmap/nmap.git",
@"ef328e6eed8410d4b2f18560da43f45856e269db", 65)]
[TestCase(@"https://github.com/keplerproject/orbit.git",
@"123ec06e3a9fd844f28a43258227bce19ba8ab30", 65)]
[TestCase(@"https://github.com/radamanthus/corona-game-template.git",
@"2d1dc125648b70b855fe5a318ad8a6ee30a4e1d2", 65)]
[TestCase(@"https://github.com/ostinelli/gin.git",
@"8361d2f5f16e64c65ba33d1dbbc74b97d5256f76", 64)]
[TestCase(@"https://github.com/ignacio/LuaOAuth.git",
@"3e1e6962658cbb78a5cd3e10c8f6abd35d59232a", 64)]
[TestCase(@"https://github.com/davidm/lua2c.git",
@"c5b239dd5a9fad5718ffaa16e6a30cca8053ba92", 62)]
[TestCase(@"https://github.com/haberman/jitdemo.git",
@"387503c5b8db268a6236a46e491d6f756ed17d31", 62)]
[TestCase(@"https://github.com/Jiyambi/WoW-Pro-Guides.git",
@"d2179d9532aec0a86c6a0e6ae548fdc1c5314a4c", 61)]
[TestCase(@"https://github.com/Germanunkol/trAInsported.git",
@"9acd13435ac05ca3821688b1c5d60ba115625e8b", 61)]
[TestCase(@"https://github.com/torhve/LuaWeb.git",
@"da1b73e7b70c938e35051a242c6fa70236e60aac", 61)]
[TestCase(@"https://github.com/henkboom/pax-britannica.git",
@"a7a3c0c21e5b27e6f4be3b0b817ebd29cd23fa7d", 60)]
[TestCase(@"https://github.com/roaminggamer/SSKCorona.git",
@"a9d6dfec85c01c2d9f8d455a10dcfefcafe35694", 60)]
[TestCase(@"https://github.com/vincentbernat/awesome-configuration.git",
@"b649c57c91ba4cb624f37d3f2a4249d9806da68c", 59)]
[TestCase(@"https://github.com/kikito/love-tile-tutorial.git",
@"92c5ce5e7e5aa9de461f948c17ed5c8d3af1d0d4", 59)]
[TestCase(@"https://github.com/dualface/quick-x-server.git",
@"2c037690610d92692744bf78fc136dec8068fddf", 59)]
[TestCase(@"https://github.com/josefnpat/vapor.git",
@"168e91c009ad7bb270498721ff753b4eb1a33038", 58)]
[TestCase(@"https://github.com/geoffleyland/luatrace.git",
@"6150cfd6290986adab8ea948e756ee17c80d098a", 58)]
[TestCase(@"https://github.com/Yonaba/30log.git",
@"25022b30e58f1590ca3d2bc2c17107b869c38d62", 57)]
[TestCase(@"https://github.com/SimonLarsen/mrrescue.git",
@"8f226413b95544d0e0744d9c3e92c68b87659483", 57)]
[TestCase(@"https://github.com/Nuku/Flexible-Survival.git",
@"4b75f275ece08e07d1325efc3205578edc0a021b", 56)]
[TestCase(@"https://github.com/meric/l2l.git",
@"e9394879e9bde63b1b21e39928ac19f304fc1b39", 56)]
[TestCase(@"https://github.com/pkulchenko/serpent.git",
@"026f4e1a5c34f0670948a13d2182729448a260f2", 56)]
[TestCase(@"https://github.com/AlexChittock/SimpleShortener.git",
@"76462aeea14adcc0aef49c2cfa8a49951b5d460e", 55)]
[TestCase(@"https://github.com/willsteel/lcpp.git",
@"7fdda9a5e3eacccee7571130602dc1381c01bcd9", 55)]
[TestCase(@"https://github.com/dmccuskey/DMC-Corona-Library.git",
@"8c85803e39a673cc84b6aa089b51be56f05dd062", 55)]
[TestCase(@"https://github.com/Neopallium/lua-pb.git",
@"862fe3121e71f695d9a44ee1d1038069292b69f3", 54)]
[TestCase(@"https://github.com/keplerproject/luadoc.git",
@"5250a12bf3bd45873a0f14305b363e53dc8b4a86", 53)]
[TestCase(@"https://github.com/SnakeSVx/spacebuild.git",
@"68186b8bc7cabbb5275afd734fae9613fbd8761d", 53)]
[TestCase(@"https://github.com/darklajid/ansible-communication.git",
@"003bc68dcbb9606a8099132a399cf21bf342e81c", 53)]
[TestCase(@"https://github.com/ansca/Corona-Comics-SDK-2.0.git",
@"ac2abb7ef77753bb01e76ce008d88cece46661b4", 53)]
[TestCase(@"https://github.com/xolox/vim-lua-inspect.git",
@"d7fb876f0291cbd13c4c38177ada015fafc58770", 53)]
[TestCase(@"https://github.com/Overtorment/NoobHub.git",
@"b0e44e70f44544033e3d50d7ea345fc02db76fe5", 53)]
[TestCase(@"https://github.com/annulen/premake.git",
@"c559fa4913bd86be6e415c3b193db90ae4607f5b", 52)]
[TestCase(@"https://github.com/yuri/sputnik.git",
@"d4c41a5a6130cca259dc2f21c1d5d99ca6a225ac", 51)]
[TestCase(@"https://github.com/ignacio/StackTracePlus.git",
@"3c0d8a09670a40267104348feac19de73191d398", 51)]
[TestCase(@"https://github.com/leafo/magick.git",
@"6ba5063b2fe3cf043b4247e9508a6c74b211e704", 51)]
[TestCase(@"https://github.com/mirven/luaspec.git",
@"c0c774b54dcc214250cc8eb8aea0dcea60dc6f7c", 49)]
[TestCase(@"https://github.com/iamgreaser/iceball.git",
@"4ae5d09ce4fd2269f4e097b63bd0fd9b83f2198f", 49)]
[TestCase(@"https://github.com/shawndumas/adventure.lua.git",
@"e98626163129f7c3c4fa6f23abaad1d16b524b16", 48)]
[TestCase(@"https://github.com/Olivine-Labs/lustache.git",
@"3358eda141041f8998b938c242b1eda7817898e9", 48)]
[TestCase(@"https://github.com/bioe007/awesome-configs.git",
@"cb91a271d55a40cae6b25b0a34ded6947211353f", 47)]
[TestCase(@"https://github.com/xopxe/Lumen.git",
@"264d9d042ee9848bccfd064d69259c1d6bde0a2e", 47)]
[TestCase(@"https://github.com/Neopallium/lualogging.git",
@"c85130120406b9641e96ab05f782dde819fbd102", 47)]
[TestCase(@"https://github.com/Bertram25/ValyriaTear.git",
@"a0e86da761fbc84ace9a778faf64e0f3687dbb3e", 46)]
[TestCase(@"https://github.com/keplerproject/wsapi.git",
@"eed8338401196cc155e59280adbe58d78933ead0", 46)]
[TestCase(@"https://github.com/wiremod/advduplicator.git",
@"b00138d1b01545fbd6bdec9f7a57597b8c6da164", 46)]
[TestCase(@"https://github.com/GymbylCoding/Dusk-Engine.git",
@"f0fcdfc2cd628966bbf208bcb6bf3c3374dd1e42", 46)]
[TestCase(@"https://github.com/mtourne/nginx_log_by_lua.git",
@"adc7ecbb3107e0b2a487d851acd33464215a076a", 46)]
[TestCase(@"https://github.com/Yonaba/Moses.git",
@"57c7b5d1d1f074cafbd570088ad8681b03c65601", 46)]
[TestCase(@"https://github.com/stevedonovan/Microlight.git",
@"95ae73f9830aec3bb1d4773156a6f921dfbed9b4", 46)]
[TestCase(@"https://github.com/appwilldev/moochine-demo.git",
@"3b3f565386d43aa533793700c020c4f096ac9636", 45)]
[TestCase(@"https://github.com/silentbicycle/tangram.git",
@"85f56670ac839def04715457e1ddaaba7f340bc1", 45)]
[TestCase(@"https://github.com/metadeus/luv.git",
@"655c0efc14572d18744aff336210b30574dd7eaf", 44)]
[TestCase(@"https://github.com/lubyk/dub.git",
@"b0c7087e878937399f329468bff41de9484f8b0c", 44)]
[TestCase(@"https://github.com/keplerproject/copas.git",
@"d2474ab444af5c2bff0ae23f60affb7c64f49242", 44)]
[TestCase(@"https://github.com/pygy/LuLPeg.git",
@"c457b27e0d7fc935b133921bf3aee92efffe40c8", 44)]
[TestCase(@"https://github.com/franko/luajit-lang-toolkit.git",
@"838b951f65899330a6b707cde96582b5f795abe3", 43)]
[TestCase(@"https://github.com/Elv13/tyrannical.git",
@"117bf645ddf015a9da63da8c33cc7da004661261", 43)]
[TestCase(@"https://github.com/lua-nucleo/lua-nucleo.git",
@"570e115dab1260ad433bd778eebb5d91fd122d5a", 43)]
[TestCase(@"https://github.com/lilydjwg/myawesomerc.git",
@"d7183f3cb533064ecc39a51e621fc556671ff449", 42)]
[TestCase(@"https://github.com/bioe007/awesome-shifty.git",
@"b12b66e6a26a2c5fbec6c1119dd29b4f8faf0fe0", 41)]
[TestCase(@"https://github.com/kikito/anim8.git",
@"8f110db45f63451df2589255c009ad0e2312eed6", 41)]
[TestCase(@"https://github.com/vrld/Quickie.git",
@"52d06037d13afdc68384f1031766ac087cb5e70e", 41)]
[TestCase(@"https://github.com/silentbicycle/lunatest.git",
@"e33f2ff55dc843a29d01013aef22b4b89903599b", 41)]
[TestCase(@"https://github.com/headchant/LICK.git",
@"e2f900bb5dea40f4d8009fad03cdcf4aa96991f7", 41)]
[TestCase(@"https://github.com/ravageralpha/my_openwrt_mod.git",
@"70fcba54825c9da6e09e7cdeb8ba57809c36c8e1", 40)]
[TestCase(@"https://github.com/iamaleksey/lua-zmq.git",
@"5578612efe296faa36203c7b80507e38fa7714e0", 40)]
[TestCase(@"https://github.com/henix/slt2.git",
@"67141149a05937589548a1368d0b52027014e2f1", 40)]
[TestCase(@"https://github.com/cloudwu/lua-trace.git",
@"79a31124f64d863cf670ff82583a144f19570339", 40)]
[TestCase(@"https://github.com/norman/lua-haml.git",
@"7eb4179f9003cc4f3d1db2adbaf81cea2fc8994c", 39)]
[TestCase(@"https://github.com/FourOne/Tukui_Filger.git",
@"2fb93152102c651ed8b2e8271727cf6d002738a2", 39)]
[TestCase(@"https://github.com/Neopallium/LuaNativeObjects.git",
@"a5c444769b7dfad1436a1bc4fe21dce75629db25", 39)]
[TestCase(@"https://github.com/alexander-yakushev/awesompd.git",
@"00f26f44c5bf890988322b5107ee536531d6e0bc", 39)]
[TestCase(@"https://github.com/stevedonovan/LuaMacro.git",
@"4ec5a8ebdbb9576ca9aa16cc6645f4c7cf2a7705", 38)]
[TestCase(@"https://github.com/SiENcE/lovecodify.git",
@"9b84ce1a5f3474707e6021355afd6c2554f18251", 38)]
[TestCase(@"https://github.com/jp-ganis/JPS.git",
@"c65f107fa59a5f572e0ffd70be7990a873d87487", 38)]
[TestCase(@"https://github.com/SnakeSVx/sbep.git",
@"346e1431ed536d4b8b54676d330f28a06c3e54be", 38)]
[TestCase(@"https://github.com/stravant/LuaMinify.git",
@"c284a942089b0154af7498b110e02d1bba8aee16", 38)]
[TestCase(@"https://github.com/Toresh/Tukui_ClassTimer.git",
@"f9f5752d33a1a882cb5f46ef9e42badaa1fb5fc2", 37)]
[TestCase(@"https://github.com/dualface/cocos2d-x-lua-framework.git",
@"8ebfc699fb135bd1749de02b6c1d5522ac105dd1", 37)]
[TestCase(@"https://github.com/JesterXL/Robotlegs-for-Corona.git",
@"79e1407f962dce303325a827adff1fe0a3e16ad6", 36)]
[TestCase(@"https://github.com/jsimmons/mongrel2-lua.git",
@"f6d2f50df67c69a56be50d23690530e19e9648db", 36)]
[TestCase(@"https://github.com/UPenn-RoboCup/UPennalizers.git",
@"abd9b34294a6485965be274333b72f1272f8f3c8", 36)]
[TestCase(@"https://github.com/fperrad/lua-MessagePack.git",
@"c908ead3c2001663ac3d0b5a9c1001bfdcc87397", 36)]
[TestCase(@"https://github.com/solso/api-aggregator.git",
@"2ea1f6b38f9bd4465255cd3a60a6dd6a6442dd9b", 36)]
[TestCase(@"https://github.com/tdy/dots.git",
@"c74fbd925b41c6189ed394854ea289131399f3f1", 36)]
[TestCase(@"https://github.com/fediaFedia/Omnimo.git",
@"a98cdf9cc5fa51b1aa82f2834218a3a11085f0b3", 36)]
[TestCase(@"https://github.com/Windower/Lua.git",
@"28926d6c45907ca91d3883599745903173eb15ad", 35)]
[TestCase(@"https://github.com/chatid/fend.git",
@"72dc6b024e2cabb4b707250b89097d4ff0da22f2", 35)]
[TestCase(@"https://github.com/dluksza/screenful.git",
@"758057633588cb35d54417783af1ce14864b8a3c", 35)]
[TestCase(@"https://github.com/cloudwu/ldebug.git",
@"b80bcd31944d7ea4c504dc915601d3e2080e73d9", 35)]
[TestCase(@"https://github.com/Elv13/awesome-configs.git",
@"18bbb46a2c8d2fc69e65e0d0a6fe66db9b5e0055", 34)]
[TestCase(@"https://github.com/ggcrunchy/corona-sdk-snippets.git",
@"e89f4547a36c4b8b817855e2a3e7c50b9ae19a4d", 34)]
[TestCase(@"https://github.com/leafo/heroku-openresty.git",
@"5945df6f7641e456e51c518947a5f9e50f0cc4d5", 34)]
[TestCase(@"https://github.com/deniza/Ad-Mediator-for-Corona.git",
@"084d12b45bd576f6abbb34cb3e849aaaa294e91c", 34)]
[TestCase(@"https://github.com/silentbicycle/tamale.git",
@"6d8ef8315348b01c88bb9d2245f84d6b1cd68c07", 34)]
[TestCase(@"https://github.com/kikito/stateful.lua.git",
@"eede90c5a5ec97639154b5e4413c337175ed21e2", 34)]
[TestCase(@"https://github.com/hoelzro/lua-repl.git",
@"b5fde2ac342def303eda8eb8d51b2bc807fdc4ba", 34)]
[TestCase(@"https://github.com/brimworks/lua-http-parser.git",
@"7adc3e7310091db5ffd1c09a87edcbc55255f730", 34)]
[TestCase(@"https://github.com/nrk/hige.git",
@"f8ccf97063c62b93224fe6991551522fdaba9083", 34)]
[TestCase(@"https://github.com/SpiderLabs/Nmap-Tools.git",
@"0282df407ae5ba426bd96415fcbe36a166a74838", 34)]
[TestCase(@"https://github.com/bartbes/love-misc-libs.git",
@"79faade695182e728cd7a5eda1304f3ed5df1073", 34)]
[TestCase(@"https://github.com/philipbl/Day-One-Lightroom-Plugin.git",
@"f48bee6370a144fb83c23f669b731be88196c3cd", 34)]
[TestCase(@"https://github.com/mpeterv/luacheck.git",
@"43721c92786dc0b0fded70abe5b51880ec42e5e2", 33)]
[TestCase(@"https://github.com/Floobits/diffshipper.git",
@"8542aeac030cc4f8fa93088a145574e8c379fdd9", 33)]
[TestCase(@"https://github.com/cycojesus/awesome-solarized.git",
@"7f9f3615bc0bf283888a60d72f5f8453d8ce8bc0", 33)]
[TestCase(@"https://github.com/Jeija/minetest-mod-mesecons.git",
@"1f666875807c3c8e6c1771e4fb46c374d2e40ccb", 33)]
[TestCase(@"https://github.com/Jasoco/LOVE-Adventure-Game-Engine.git",
@"5ed8cb4f6b561090ef9b5fccda187b5b32217dbf", 33)]
[TestCase(@"https://github.com/OutlawGameTools/Lime2DTileEngine.git",
@"b61f2b5ba47bbeef7674436aa8925d2f04c3d926", 33)]
[TestCase(@"https://github.com/pintsized/lua-resty-rack.git",
@"4d8f8e166c01a7aa8ce9a9f06969699fd0aebf47", 33)]
[TestCase(@"https://github.com/vain/awesome-vain.git",
@"a83343157e11efc1e1cbbe7b80ab01d38fca373a", 32)]
[TestCase(@"https://github.com/tekkub/libdatabroker-1-1.git",
@"1a63ede0248c11aa1ee415187c1f9c9489ce3e02", 32)]
[TestCase(@"https://github.com/JakobOvrum/LuaIRC.git",
@"16057be815ec4408e32988c561e7ea4038bc53ba", 32)]
[TestCase(@"https://github.com/catwell/luajit-msgpack-pure.git",
@"a7f16a0826831dc78ff29b94a834b66847988506", 32)]
[TestCase(@"https://github.com/ToxicFrog/vstruct.git",
@"f230429b6aa0791d0a0f3755ff670372186fb63c", 32)]
[TestCase(@"https://github.com/z1lt0id/awesome.git",
@"a93c6274fcd411dcd2224b963238928ab821a064", 32)]
[TestCase(@"https://github.com/Nayruden/Ulysses.git",
@"3860886d9dabf36b1ad7e7f81d7e26776c6960c3", 32)]
[TestCase(@"https://github.com/kikito/cron.lua.git",
@"170f7d9463de36ecd73c16fd008b3789de2e54cb", 31)]
[TestCase(@"https://github.com/mailru/tntlua.git",
@"15d742d541725e6eeea96a24d1e60fff38294af5", 31)]
[TestCase(@"https://github.com/creationix/moonslice-luv.git",
@"717f5ce1ce96f0c1abb58b97c44e90bbaef814f2", 31)]
[TestCase(@"https://github.com/Mic92/vicious.git",
@"1c626ec7a6988e91f8ffe6c94d516b18bf95f9d9", 31)]
[TestCase(@"https://github.com/waf/nice-and-clean-theme.git",
@"8a0ae5950921c2cadb609ba1c735fd9392bee70c", 31)]
[TestCase(@"https://github.com/wiremod/wire-extras.git",
@"a2db0eb86660e4f0bbfff935368a6dcd29acfb80", 31)]
[TestCase(@"https://github.com/sroccaserra/object-lua.git",
@"64f6a91318a310cf2a7ef8eb0884f82d46beead6", 31)]
[TestCase(@"https://github.com/wingify/lua-resty-rabbitmqstomp.git",
@"a8c9a0d9ad5e150b6f284a594e239e7baa766622", 31)]
[TestCase(@"https://github.com/ansca/Air-Hockey.git",
@"ff05ac99ec276259249ec423520064dafaac0eb7", 31)]
[TestCase(@"https://github.com/jtarchie/sinatra-openresty.git",
@"7f7ed65eb389f432bd0a80bd226e8c1bbdc15352", 31)]
[TestCase(@"https://github.com/clementfarabet/ipam-tutorials.git",
@"e0cfcf4749d88f7a41fa5989ee94605942b205eb", 31)]
[TestCase(@"https://github.com/GlitchGames/GGData.git",
@"283673459586a92c75473da7fe97855ec85517a5", 30)]
[TestCase(@"https://github.com/craigmj/json4lua.git",
@"0459abdca8145b4965b9a818c526c634725986b1", 30)]
[TestCase(@"https://github.com/khaledhosny/euler-otf.git",
@"6c76de44dcff216f2d91d0638386cb575a52ded5", 30)]
[TestCase(@"https://github.com/Wiladams/LAPHLibs.git",
@"aed3531fb6face76c5634bde995e9cf503d6136b", 29)]
[TestCase(@"https://github.com/cloudwu/luacc.git",
@"cbf858da578aa75c6e3651e78ea78c19e5e12159", 29)]
[TestCase(@"https://github.com/Chessnut/NutScript.git",
@"10ae4f18968a265c158a78a14327a56a6a9088ee", 29)]
[TestCase(@"https://github.com/kikito/bump.lua.git",
@"f3e2033bf248c4278ca2dc2c7c4e66d5cf413a2f", 29)]
[TestCase(@"https://github.com/tales/sourceoftales.git",
@"f259c99ebb42a4956f6e4c5464051651a3226d5a", 29)]
[TestCase(@"https://github.com/paulofmandown/rotLove.git",
@"bb089f3294ba9cd1f7cc031dffc0b695fa2ed4bf", 29)]
[TestCase(@"https://github.com/ansca/TinyPenguin.git",
@"865b63634e55d6769e3a00b1da902c79ede68787", 29)]
[TestCase(@"https://github.com/slembcke/debugger.lua.git",
@"49baebfe73e3cc2ae5f17ee2997ad82b5ecd06d3", 29)]
[TestCase(@"https://github.com/Olivine-Labs/lusty.git",
@"97ff69c9ccc09a339969c4b2e08d94da9581c06d", 29)]
[TestCase(@"https://github.com/RobSis/treesome.git",
@"6486454d586f86ee4eebd9edcc6df76664ff9227", 29)]
[TestCase(@"https://github.com/kindy/lj-web.git",
@"81081dc8f29e09c977f864a035695d46a55395c1", 29)]
[TestCase(@"https://github.com/fsantanna/luagravity.git",
@"58c761ded3b8f27e1f2f7a0810898a9e91d7437a", 28)]
[TestCase(@"https://github.com/DarkstarProject/darkstar.git",
@"367bd9591cc586b06171c4679d7722cedad00557", 28)]
[TestCase(@"https://github.com/derickd/moaigui.git",
@"9e0300469df5c65bf2445705c2cda6df9bc81b1f", 28)]
[TestCase(@"https://github.com/Eonblast/fleece-lite.git",
@"06103ea87601c74801ca5780bc9014011243bbec", 28)]
[TestCase(@"https://github.com/mason-larobina/luakit-plugins.git",
@"d5c774952d1ebdb36b20f5dfedb0f831abb8743a", 28)]
[TestCase(@"https://github.com/500px/500pxPublisher.lrplugin.git",
@"09aa4a317c56f856ffef770ef1d37d1cc3d13f96", 28)]
[TestCase(@"https://github.com/andycai/kodelua.git",
@"b8556d073ef658959a1afc32fa6d2313e4285923", 28)]
[TestCase(@"https://github.com/stevedonovan/luaish.git",
@"6c5ea145e8faedd6bf65d7e80cb4fc741629cf16", 27)]
[TestCase(@"https://github.com/Asphyxia/Tukui.git",
@"3c8e581abc23fc8bcd7aa8668affe30e6204be5d", 27)]
[TestCase(@"https://github.com/tullamods/Dominos.git",
@"6d5b7bf1883d62c26b64ff635244a0e435c2074d", 27)]
[TestCase(@"https://github.com/tadeuszwojcik/luvit-redis.git",
@"a91d4584f5b1eab95923c3e48f838a4096b8499d", 27)]
[TestCase(@"https://github.com/dmccuskey/Ghost-vs-Monsters---OOP.git",
@"c9bbaadc02941f71f518d3258a7b0d0624ac9daf", 27)]
[TestCase(@"https://github.com/rgieseke/locco.git",
@"139fc5b8b3cd3fa6e1a4de777ec98ce59715ec18", 27)]
[TestCase(@"https://github.com/Phrogz/SLAXML.git",
@"8aa52bc271eb9a28b1f8f3c5260202ad1b6fcaf8", 27)]
[TestCase(@"https://github.com/johnpolacek/Match-The-Letter-Game.git",
@"4f164f80e997755f0999b678896058aa4e767818", 27)]
[TestCase(@"https://github.com/GrahamRanson/Ice.git",
@"0efbc709ce9b65526ed0939921ce0933e486ccb9", 27)]
[TestCase(@"https://github.com/LazyZhu/lua-resty-ssdb.git",
@"c7bdbcc8dc3ee23790fa9ca6ee3631e84fa0bf5d", 27)]
[TestCase(@"https://github.com/Yonaba/Lua-Class-System.git",
@"7c4b0f345e7d89835024c1aee763e8fde055ca3a", 27)]
[TestCase(@"https://github.com/fgprodigal/RayUI.git",
@"2ffd999fec0a372a70247058c6c00f8cb766acab", 26)]
[TestCase(@"https://github.com/ildyria/iFilger.git",
@"d092e040143146a551b6821b6a9b199a4b98e9db", 26)]
[TestCase(@"https://github.com/sergeyzavadski/breeze.git",
@"b17da085ca4691feb189690038b8d054b861d6e0", 26)]
[TestCase(@"https://github.com/bioe007/awesome-revelation.git",
@"2f28b196352199acd51d6967b19dcaf3d95a55e8", 26)]
[TestCase(@"https://github.com/tullamods/OmniCC.git",
@"434fb78fba9e891efdd9a43978efe00ab3232ad2", 26)]
[TestCase(@"https://github.com/TACC/Lmod.git",
@"4f4a3eae00a8c2d26daf42bb6038be9674971faa", 26)]
[TestCase(@"https://github.com/Nayruden/ns2lua.git",
@"9dc97d8b7aa7eee606e2fc0d55107b1cf52bc70a", 26)]
[TestCase(@"https://github.com/fperrad/lua-Spore.git",
@"af3be83d6569c17bd9b87d170b2530564ec7b3aa", 26)]
[TestCase(@"https://github.com/silentbicycle/sidereal.git",
@"145f788b5246e73f7cd9f82097161b63ee05b6f8", 26)]
[TestCase(@"https://github.com/perky/FEZ.git",
@"39186578f86f42bc554526ebb6184f943b16a2dc", 26)]
[TestCase(@"https://github.com/desbouis/nginx-redis-proxy.git",
@"1e9048f67c518f5093b6f516af240c39c4d1b678", 26)]
[TestCase(@"https://github.com/decltype/forgottenmapeditor.git",
@"bae6c103c688ab58c1e422179871779fbd6a8687", 26)]
[TestCase(@"https://github.com/neomantra/lds.git",
@"d3b054dc48ab7428ea0020ea81e79688ad160fa1", 26)]
[TestCase(@"https://github.com/josemota/dotfiles.git",
@"23abfcce78efc084854868dca9d57cb95b4feeff", 26)]
[TestCase(@"https://github.com/robmiracle/Corona-SDK-RSS-Reader.git",
@"0ff21a80b3c9548e265d9816428aa256007ff8a5", 26)]
[TestCase(@"https://github.com/jaydipdave/quickdefencewaf.git",
@"d6a0412e56beb856a06641c9d401a1a35e1ad7ca", 26)]
[TestCase(@"https://github.com/diegofn/TuneIn-Radio-VLC.git",
@"4e02c6b807ac31dd5256d7b370931db2a1ed4ccc", 26)]
[TestCase(@"https://github.com/setkeh/Awesome-Laptop-3.5.git",
@"3c96c14cfeed1beb7781097ef8a139e3296db362", 26)]
[TestCase(@"https://github.com/ierton/awesomerc-ierton.git",
@"7d0cbecc84266e2e11223f8fac5a25833589a21c", 25)]
[TestCase(@"https://github.com/haveatry823/QSanguoshaAI.git",
@"97b9a4cc39f3b320c741f20f53368ef490b9e753", 25)]
[TestCase(@"https://github.com/leegao/see.lua.git",
@"4f326f0ce435d6056787ded652e78729c60c439d", 25)]
[TestCase(@"https://github.com/affli/Tukui_DBM.git",
@"4d637aa6ea9c48fb55d5755ae98a8750cb6a762f", 25)]
[TestCase(@"https://github.com/bartbes/lovelybigplanet.git",
@"a8ff90107788e1b2375e0f347a89a0f47b16f2bb", 25)]
[TestCase(@"https://github.com/kengonakajima/lua-msgpack.git",
@"91fcc8910a5f5cb83de6119357402940ce309fcc", 25)]
[TestCase(@"https://github.com/TheLinx/ltwitter.git",
@"1859f60816a2c8d1b999db4d2fdfe0d671f047d6", 25)]
[TestCase(@"https://github.com/johnpolacek/Video-Gallery.git",
@"bad64b606c222165606237b204a4f5a57024cd4c", 25)]
[TestCase(@"https://github.com/geekscape/mqtt_lua.git",
@"aba95ca2f790d0aa0ca910a8c26f2455f8d3b166", 25)]
[TestCase(@"https://github.com/ilua/ilua.git",
@"c9ef6799113e71d89d629b29b266d1eba4105038", 25)]
[TestCase(@"https://github.com/christopho/zsdx.git",
@"878df4510abea1dcd6b05d861941a2926c0c265e", 25)]
[TestCase(@"https://github.com/Etiene/sailor.git",
@"5472932a2483fc3e7b69a4e69f7fa85caa245230", 25)]
[TestCase(@"https://github.com/Senscape/Asylum-Teaser.git",
@"52f4f5a0dcb868fd1ebb9b86f3e4c2dbdb4579d0", 24)]
[TestCase(@"https://github.com/npryce/codea-controllers.git",
@"38bbfb87a15627a594c625ccc6c4b90e7c63aae3", 24)]
[TestCase(@"https://github.com/renstrom/NeavUI.git",
@"e16a5b8fd402fd67b3d61b66531b2adbd1e24c8c", 24)]
[TestCase(@"https://github.com/sacek/LPegLJ.git",
@"a97c49b36abc172221fedbfc984dba108ede7f01", 24)]
[TestCase(@"https://github.com/karai17/Simple-Tiled-Implementation.git",
@"936a563e383366c7a68bd87148b8d535ebedd2f3", 24)]
[TestCase(@"https://github.com/kikito/passion.git",
@"1fb7233b4035cddb4e58ea18a9f590d011eb2f72", 24)]
[TestCase(@"https://github.com/khaledhosny/luaotfload.git",
@"9291e1983240e72d93815a096963dc28a7acd770", 24)]
[TestCase(@"https://github.com/TekNoLogic/Panda.git",
@"32b4d6e53446ae3579e9d72838c81113edd3549d", 24)]
[TestCase(@"https://github.com/Elv13/radical.git",
@"8da00cbd657f77fdfcd4b6a9cc81420daa2cb5e7", 24)]
[TestCase(@"https://github.com/mydevelopergames/AutoLAN.git",
@"b5353864003cb0ba20d5b1e37284dd97114cf1df", 24)]
[TestCase(@"https://github.com/kikito/beholder.lua.git",
@"9f1a31eb51f5e3775f1c111fab37a9f72db6deae", 24)]
[TestCase(@"https://github.com/jgrahamc/lulip.git",
@"4049423de9c02c25d1deebd54553211bf583e9d8", 24)]
[TestCase(@"https://github.com/mlnlover11/LuaAssemblyTools.git",
@"e496bc6df2e49ea0beebb26f216aca3821a2b28e", 24)]
[TestCase(@"https://github.com/kikito/love-loader.git",
@"d29176b54e5bf0ee2496d89f6eb5bbc4b35ae06d", 24)]
[TestCase(@"https://github.com/TekNoLogic/GnomishVendorShrinker.git",
@"dbf481f2cd0da671169c9673f976bf9a2d61e957", 23)]
[TestCase(@"https://github.com/kikito/middleclass-extras.git",
@"840a6b250f7fd8d46d796a3ec99c363651c626c0", 23)]
[TestCase(@"https://github.com/Metapyziks/finalfrontier.git",
@"3b22cc19b155834c0e9af7c107ee58f1cd4deea8", 23)]
[TestCase(@"https://github.com/Wiladams/TINN.git",
@"e588fff7f9e147ef4bc56e872cb385b56f712913", 23)]
[TestCase(@"https://github.com/RustOxide/Oxide.git",
@"b69be445c99762f70ebe4c3e42e53170d09a21cf", 23)]
[TestCase(@"https://github.com/pygy/strung.lua.git",
@"f17cdabe1973eaa5cb1ce7817822f7a8c37b8d8b", 23)]
[TestCase(@"https://github.com/circumjacence/ConkyInfinitySVG.git",
@"14aa1812dd4a596b23df70d58b78b8052258b9b5", 23)]
[TestCase(@"https://github.com/lonelyplanet/openresty-statsd.git",
@"9b1a788cabe1fcb20843f4dc0d78468ed04f9a62", 23)]
[TestCase(@"https://github.com/Cluain/Lua-Simple-XML-Parser.git",
@"2c318f3b01121dad61dee34b8c80c970ff938192", 23)]
[TestCase(@"https://github.com/golgote/neturl.git",
@"258c3f6e637030a39265b74ae1e9d681cf977296", 23)]
[TestCase(@"https://github.com/JackH79/.dotfiles.git",
@"b957416b6a83a0d05fa943067e821ed77732c201", 22)]
[TestCase(@"https://github.com/kamaitama/Tiramisu--outdated--don-t-use-.git",
@"15a847ad05042ae4d7b1117b887902e33470f076", 22)]
[TestCase(@"https://github.com/Wiladams/LJIT2Win32.git",
@"59e4419fc4fae4af2553e65fbbaa3d8a0125b4c4", 22)]
[TestCase(@"https://github.com/haimanman/jx3.git",
@"4fbdd1db34096d1c904ca426aa0f19c4f29595c5", 22)]
[TestCase(@"https://github.com/PrinterLUA/FORGOTTENSERVER-ORTS.git",
@"916b8b9341dac800a7adbbe76efb1b56d1bdb78d", 22)]
[TestCase(@"https://github.com/Thalassicus/cep-bnw.git",
@"a0f24cc82fd05ed2b1bfff411f276e8ef7ace176", 22)]
[TestCase(@"https://github.com/affli/xCT.git",
@"c20ea295aa816b53b6294eae47d6c4af2eb623d7", 22)]
[TestCase(@"https://github.com/mascarenhas/luaclr.git",
@"b0586fcba4320beab46a2d243ca80894fee02afd", 22)]
[TestCase(@"https://github.com/Haleth/FreeUI.git",
@"60353ebfe2a143c7beb32ba600701b6dd89e7398", 22)]
[TestCase(@"https://github.com/speedata/publisher.git",
@"8f4415a068bd7561f514b7cc6cc603e415a1bde6", 22)]
[TestCase(@"https://github.com/FPtje/Sublime-GLua-Highlight.git",
@"7a5a310f440519a25d4f344fcd25906fdd5baf98", 22)]
[TestCase(@"https://github.com/xolox/lua-lxsh.git",
@"ee16ce4903616030a26c15c4f8ce2222434f0ade", 22)]
[TestCase(@"https://github.com/davidm/lua-bit-numberlua.git",
@"30b6828b298b46411b548202d40524caba06a99c", 22)]
[TestCase(@"https://github.com/mikar/awesome-themes.git",
@"877511213c3db9397166bcd1436087b39387aa5d", 22)]
[TestCase(@"https://github.com/ansca/Storyboard-Sample.git",
@"500f3bfeda09abf6cf82f679b3e14cad65b40900", 22)]
[TestCase(@"https://github.com/zrong/lua.git",
@"5e3e50524a36552e95a4cdda2025dbb8b1694a65", 22)]
[TestCase(@"https://github.com/lovelyrpgcommunity/A-Whiff-of-Steam.git",
@"e44aea49b6de9955603cb4db5cd88beea003f3f0", 21)]
[TestCase(@"https://github.com/fperrad/lua-TestMore.git",
@"627b3b84afae5c0395f2c336ee710539792e4fac", 21)]
[TestCase(@"https://github.com/DracoBlue/lua-oauth.git",
@"e09c6325713cde008416b9211fb57b284352f9a3", 21)]
[TestCase(@"https://github.com/creationix/nodeconf2012.git",
@"879fcbe34143e3784fc3110637d467a62552d472", 21)]
[TestCase(@"https://github.com/Meneth/PB-git.git",
@"0b1a1abafea33f8009f6502a3a5807ee89065d2e", 21)]
[TestCase(@"https://github.com/RafaelDeJongh/cap.git",
@"c411140a3d0aa69f5752388c83d281bd5eb39755", 21)]
[TestCase(@"https://github.com/RafaelDeJongh/cap_resources.git",
@"049e4f6a34937c5ac969d611e6e5f668e27f481a", 21)]
[TestCase(@"https://github.com/davidm/lua-matrix.git",
@"7a33f9652ddc6808ec9eb866d9e214546bbfc765", 21)]
[TestCase(@"https://github.com/quaker66/vortex.git",
@"2993be665f412b8243470597e34bd9f61f5513d1", 21)]
[TestCase(@"https://github.com/Wiladams/LJIT2RPi.git",
@"43cf70d697de45344b660c05ef36b53c3df81617", 21)]
[TestCase(@"https://github.com/TekNoLogic/Cork.git",
@"1b40e35a31c1048033b6f6b94600581b389a46d9", 21)]
[TestCase(@"https://github.com/hoelzro/lua-term.git",
@"76d7c992a22d4481969a977ad36d6d35d3b2ca6f", 21)]
[TestCase(@"https://github.com/ansca/Pinball-Madness.git",
@"70679e4d288cf21cc612146f11c8d24fcdb51834", 21)]
[TestCase(@"https://github.com/duff333/Parallax-Class.git",
@"cf6c6f4a4e90208ca9b6fd10d439825017a900b3", 21)]
[TestCase(@"https://github.com/coronalabs/CoronaCrush.git",
@"211be29c3c9b90d4e762c8c502c543f6e6937d63", 21)]
[TestCase(@"https://github.com/wscherphof/lua-htmlparser.git",
@"a8b5f6fb3160ababb5bc2c11bc4b2b0b67439be5", 21)]
[TestCase(@"https://github.com/clementfarabet/torch-tutorials.git",
@"844457015aa1c23f60b4d75fc4a79e745f322e2e", 21)]
[TestCase(@"https://github.com/roaminggamer/RG_FreeStuff.git",
@"8c27742b04911fe1f1ed348390681a46d04be6c7", 20)]
[TestCase(@"https://github.com/sharpobject/panel-attack.git",
@"129b7094c1fc7bf26494acf9f819b164e95e1cc6", 20)]
[TestCase(@"https://github.com/minetest-technic/technic.git",
@"44dbc75b6115d5235ba0538925e44484037459a1", 20)]
[TestCase(@"https://github.com/joshtynjala/gtween.lua.git",
@"572000edf616c2c7ce2c5ab15e550da97f8d928f", 20)]
[TestCase(@"https://github.com/Movimento5StelleLazio/ParlamentoElettronicoM5S.git",
@"415d0b8c03bbda585171e1a795b7dc45d7d15bb7", 20)]
[TestCase(@"https://github.com/CK2Plus/CK2Plus.git",
@"d34cdd807f66990e040edcbba462191d56f36852", 20)]
[TestCase(@"https://github.com/codepunkschmidt/Codepunk-s-Code.git",
@"f2f76b3c1662e864269ca34f3540e90b61a375a4", 20)]
[TestCase(@"https://github.com/mkottman/lua-git.git",
@"d64218a227fe26b1fc971a8802f74a1921e0187e", 20)]
[TestCase(@"https://github.com/bartbes/Class-Commons.git",
@"53f6f546d20f9ff68d72b894b4c585be9dab9160", 20)]
[TestCase(@"https://github.com/keplerproject/cgilua.git",
@"4ef15e7b641202325ba220e1700c60a23692f8dd", 20)]
[TestCase(@"https://github.com/graue/luasynth.git",
@"4ddb9e9b587cfb62b2bca4914b3c67bb862338ab", 20)]
[TestCase(@"https://github.com/altuzar/Appsamuck_Corona_SDK.git",
@"b4015eb491f6a8408a8201218048f49253665f25", 20)]
[TestCase(@"https://github.com/jolicloud/jolicloud-desktop-environment.git",
@"77cb7b64647d1d10cbf40f30d6c11b8c05a9e96a", 20)]
[TestCase(@"https://github.com/bungle/lua-resty-template.git",
@"aadc42ba718de8dc97fe8d2dd3f64fdd837f9910", 20)]
[TestCase(@"https://github.com/06wj/cocos2d_lua_snippets.git",
@"e8486c6d51a63ef79552afd5bb556ae07b8558af", 20)]
[TestCase(@"https://github.com/norman/grackle.git",
@"f0b88c9f7a3b3a2df197decbd4b90147c9ac4c05", 19)]
[TestCase(@"https://github.com/pixeltailgames/cinema.git",
@"3bbc936bae1a2c538f5fbc8cc9e31da8fe238212", 19)]
[TestCase(@"https://github.com/ar2rsawseen/GiderosCodingEasy.git",
@"9778dc91ed6d88b36b6140d59ec92d942705af87", 19)]
[TestCase(@"https://github.com/stevedonovan/Orbiter.git",
@"92378b529bad80669ade6f989933fbb37d445319", 19)]
[TestCase(@"https://github.com/flukso/flm02.git",
@"7564cae07ac0cea60fbb137e1a96424d6bd397f4", 19)]
[TestCase(@"https://github.com/iGARET/MovieClipX.git",
@"6046016454c5814513f50e54c029f61bad1b7fc0", 19)]
[TestCase(@"https://github.com/michal-h21/tex4ebook.git",
@"cbe484bcaa764f8874dab0666c00091df5e55cd3", 19)]
[TestCase(@"https://github.com/clementfarabet/torch7-demos.git",
@"0991dec5d6c09ceba6452a6d6b6a5f466de6a12c", 19)]
[TestCase(@"https://github.com/SimonLarsen/sienna.git",
@"ba33bd8aa5a49ec3565f9580f6ff84b06f0b4ed2", 19)]
[TestCase(@"https://github.com/liquidbase/Duffed-UI.git",
@"6fc01613c88f991350d9d1cbd50258282479ed32", 18)]
[TestCase(@"https://github.com/corsix/ffi-reflect.git",
@"b01e2421722e591173cd53fd082b6372c358b4d5", 18)]
[TestCase(@"https://github.com/jdesgats/ILuaJIT.git",
@"dde5d2597b2e3142c937191a30906f72f463f9e8", 18)]
[TestCase(@"https://github.com/bennychen/Moai-based-Pacman.git",
@"865f9d6fa27ec65c83d4c4100a84dced32b41fa1", 18)]
[TestCase(@"https://github.com/TekNoLogic/teksLoot.git",
@"ab416d90d878d9def517f20043989b9bdd3e8715", 18)]
[TestCase(@"https://github.com/mabako/mta-paradise.git",
@"6d4a852e27a276920943827426b9cf88e20a6b7d", 18)]
[TestCase(@"https://github.com/ayourtch/gliese.git",
@"4635b1b1874c877c291169c3298b64b5d030fe57", 18)]
[TestCase(@"https://github.com/jnwhiteh/luasandbox.git",
@"3623705ef17767aa31125f124023a1f8d48e644f", 18)]
[TestCase(@"https://github.com/andrewmcwatters/steamweb-lua-sdk.git",
@"f86cfd6b5a2e32196c1bb433266a34395618b9b7", 18)]
[TestCase(@"https://github.com/agladysh/luatexts.git",
@"2ca61795384aa9a9685776527515266894d3471b", 18)]
[TestCase(@"https://github.com/kikito/memoize.lua.git",
@"30218efdba2fe563117f4176849afa2e76ddaa9d", 18)]
[TestCase(@"https://github.com/3SillyHats/LoveHotel.git",
@"b5858b621afde54272a7b057a3011851d7382a73", 18)]
[TestCase(@"https://github.com/leegao/Rocket-for-Lua.git",
@"7767a250d2e52579a34d2da6a19e43a9a8810994", 18)]
[TestCase(@"https://github.com/JesterXL/PlaneShooter.git",
@"d0a80f993e2b94ee7eba9bc07f60d9f125ddaf1a", 18)]
[TestCase(@"https://github.com/latestpost/Moai-Examples.git",
@"aea47812478686184dfc9f0f974b1fe63b23ebc1", 18)]
[TestCase(@"https://github.com/randrews/color.git",
@"62b72b6b45a0ceb19d8bae7deca8ac0a9d62d169", 18)]
[TestCase(@"https://github.com/Shadowed/ShadowedUnitFrames.git",
@"0e15e2e55c08ad922657a6850823d15d7145d049", 18)]
[TestCase(@"https://github.com/cldrn/nmap-nse-scripts.git",
@"9cc8c91f7b16c4eaa1735642be9807e174c4177d", 18)]
[TestCase(@"https://github.com/bsm/fakengx.git",
@"20920a35d2d3d0104e36784efbbafa873b4cb134", 18)]
[TestCase(@"https://github.com/coronalabs/framework-widgets-legacy.git",
@"ad47e84c5febfd9c8c40ca9b163cace973db0dca", 18)]
[TestCase(@"https://github.com/ittner/lua-iconv.git",
@"2205a0fe274ee0e59b1b15dcd5a11a4325fecead", 18)]
[TestCase(@"https://github.com/xspacesoft/PropHunt.git",
@"5f38363f44080d173515c48c9977a57f226f4d6a", 18)]
[TestCase(@"https://github.com/malkia/luajit-opencl.git",
@"72cba1c258b604ee301015cd6ac00dc264b0eef7", 17)]
[TestCase(@"https://github.com/francois2metz/pomodoro-awesome.git",
@"d6a4b06308b713abf396e622e507bd8c64daf388", 17)]
[TestCase(@"https://github.com/iamwilhelm/frock.git",
@"957eb561d41ea15b3ce0f6af5ceb3132378fcbf3", 17)]
[TestCase(@"https://github.com/Adze1502/mwan.git",
@"e7ce8cc03e9ca563a341021b729325f8f0847027", 17)]
[TestCase(@"https://github.com/alexander-yakushev/Orglendar.git",
@"a33fbe7adb838d5292ebe38cc829c6b3771df348", 17)]
[TestCase(@"https://github.com/mikejsavage/flea.git",
@"de59a9c3072aff59ece9a5808f31decae0e029d3", 17)]
[TestCase(@"https://github.com/sacek/Luajit-LPEG.git",
@"12a777b074d27a2724cf4e3bd344fddc2b0b3008", 17)]
[TestCase(@"https://github.com/gigamo/awesome-configs.git",
@"8417a0c6fc906b110d3be3cf47b1f7ceeca1a03d", 17)]
[TestCase(@"https://github.com/spc476/LPeg-Parsers.git",
@"92bc1752975abc8e1a713e210271fa9f0d0f7843", 17)]
[TestCase(@"https://github.com/cornelisse/LuaFSM.git",
@"efbb263562917165e1d7ecdd905348619c59746f", 17)]
[TestCase(@"https://github.com/dvv/luvit-websocket.git",
@"02b74c14fe547a32e858c56717af78757076e258", 17)]
[TestCase(@"https://github.com/bowerhaus/BhWax.git",
@"43a1bdd811a77fe0fbc2dd92963946d855a7a340", 17)]
[TestCase(@"https://github.com/slact/lua-ohm.git",
@"91b7fb3649d8a120c8329949c0b92272914488ef", 17)]
[TestCase(@"https://github.com/gideros/Scene-Manager.git",
@"c62d27d52752d5e49df80cb1d6ee05ee66a3d11a", 17)]
[TestCase(@"https://github.com/kainosnoema/remq.git",
@"3cd3deb56d62bb2ebcc353103db04e8717878f5b", 17)]
[TestCase(@"https://github.com/torque/Aegisub-Motion.git",
@"fad9f464a0faf3741ab751efdcbb2936b31c77ea", 17)]
[TestCase(@"https://github.com/ppissanetzky/AndThen.git",
@"95575c7ef883554c3f3f61d3aaee7139ec071817", 17)]
[TestCase(@"https://github.com/callin2/ParticleSugar.git",
@"4c0e661db118ef6dbe8c472e5de627f68ac3a721", 17)]
[TestCase(@"https://github.com/Tieske/date.git",
@"ac569c1a7036b7a2131b94776543c1e7bdc378b3", 17)]
[TestCase(@"https://github.com/kikito/gamera.git",
@"bf85cbf8416e82e1d2399c0e2ca81f27500959ce", 17)]
[TestCase(@"https://github.com/menudoproblema/Wireshark-MQTT.git",
@"d208c656126c393d018c692aaba7a7a8459e7673", 17)]
[TestCase(@"https://github.com/fperrad/lua-CodeGen.git",
@"fa086ff237875753d8b26f98728e489b1aca2d1d", 16)]
[TestCase(@"https://github.com/weshoke/codepeg.git",
@"51ef031a2463f075b53f0dba95b91ab46eb9736f", 16)]
[TestCase(@"https://github.com/adamdburton/pointshop.git",
@"53c8896258437a4cb4317e8b7f09f44add4be6bc", 16)]
[TestCase(@"https://github.com/davidm/lua-fish.git",
@"9e5183da866f2b71636492734170d30191ec198a", 16)]
[TestCase(@"https://github.com/Person8880/Shine.git",
@"63ffc5f7d3c94afd785f7bc376420e78a12440c6", 16)]
[TestCase(@"https://github.com/timn/lua-xmlrpc.git",
@"b12ac249d62dc66ba76e7da4adbced8aa37fe8a3", 16)]
[TestCase(@"https://github.com/SpaceTown-Developers/Lemon-Gate.git",
@"8d561d204a52929670718c9c58956d2dda03eb8a", 16)]
[TestCase(@"https://github.com/radare/lum.git",
@"70abe3deb2de18f53b3f635008f230889d61668a", 16)]
[TestCase(@"https://github.com/Jasje/JasjeUI.git",
@"3473486d3142e135d8450ae7606cbd5013ce5164", 16)]
[TestCase(@"https://github.com/dodo/uzful.git",
@"51898ac2a28f8869d0e1983ab1e492b7b45ee375", 16)]
[TestCase(@"https://github.com/ansca/Flight-Path.git",
@"6d65ac819354e740f1bc28e01d69ab6775801083", 16)]
[TestCase(@"https://github.com/rit-sse/RapDevXI.git",
@"ac966362765f8f877fc3e05f40d6b46a95bac9cb", 16)]
[TestCase(@"https://github.com/pkulchenko/ZeroBraneEduPack.git",
@"37a15344f1ac162e53956ce6b83188a560063499", 16)]
[TestCase(@"https://github.com/s2games/Heroes-of-Newerth-Bots.git",
@"d267b6df4f0ea1e19d6419606251a6c38a7065fc", 16)]
[TestCase(@"https://github.com/ayourtch/luajit-fun.git",
@"54fd54d2b6f173c33428bd984365f05a36e33821", 16)]
[TestCase(@"https://github.com/nanoant/glua.git",
@"6eb2c470d9b430ffe1e9af7c3e60676f38eff9ad", 16)]
[TestCase(@"https://github.com/bakins/lua-resty-riak.git",
@"c14c61b3035869d8424de9c4ee47ec380544d742", 16)]
[TestCase(@"https://github.com/perky/Goo.git",
@"c4101d31b1915381788901c3027bdcd2da423893", 16)]
[TestCase(@"https://github.com/ansca/Simple-Pool.git",
@"cc261ca0dac4099b024a596d684417dcc158fbf3", 16)]
[TestCase(@"https://github.com/ea/nmap-scripts.git",
@"30858bb1ae8778bf4aba1ea631325a91a1bca4b2", 16)]
[TestCase(@"https://github.com/Patsky/Match-3-Gems-Puzzle-Game.git",
@"cbc564e7e322b07863effed66f7fbb5a1ee008a3", 16)]
[TestCase(@"https://github.com/Xandaros/evolve.git",
@"946852f4fc0dade9f63a61a65ff1d106dfa6ae2c", 16)]
[TestCase(@"https://github.com/clementfarabet/lua---parallel.git",
@"bbeb0ae7f6c8c41a580e61210fd9aafcc3d51f53", 16)]
[TestCase(@"https://github.com/daly88/lutem.git",
@"a15bda104ff6cb758599b9bf3efc5ee742f3ba41", 16)]
[TestCase(@"https://github.com/freifunk/luci.git",
@"14c50067dc6aed27bc5e53e2ebab015849a7845e", 16)]
[TestCase(@"https://github.com/adriweb/EEPro-for-Nspire.git",
@"b2be315f3e9fbf3ce017f10cade657c613ad09e1", 16)]
[TestCase(@"https://github.com/gorlowski/couth.git",
@"f6ffc89e32e3b6c9f6a394c70708aa78d492eb07", 15)]
[TestCase(@"https://github.com/norman/hops.git",
@"b89744c7b2fe54ae2e3e9f8e632d5a78bee77243", 15)]
[TestCase(@"https://github.com/loghound/Corona-Transitions.git",
@"6f2c661893eaafc1935a53cef969f91284040c5d", 15)]
[TestCase(@"https://github.com/ansca/Gear-Animation.git",
@"082bd66b2589d37624e09f0be8d6501512c8ddf7", 15)]
[TestCase(@"https://github.com/kengonakajima/luvit-mysql.git",
@"1c93b1c63a8d35fd139d5ed5720752c9c68a94e3", 15)]
[TestCase(@"https://github.com/lloydpick/gathererdb_wowhead.git",
@"a404fa4f372d59f48836479d125e7a2b213aaadc", 15)]
[TestCase(@"https://github.com/Etiene/valua.git",
@"5c541c55c1a16469ef7ed1c34de2511f6916c6a3", 15)]
[TestCase(@"https://github.com/rxi/lume.git",
@"c7471b32fbfcd0f1cc3b94eefbb4c76d3f99a20e", 15)]
[TestCase(@"https://github.com/Fizzadar/Luawa.git",
@"4cc4c97f9ca4d61e73f20eeb3aa23a55dba59f8e", 15)]
[TestCase(@"https://github.com/unifiedremote/sandbox.git",
@"840c864a692ed00b62235273832e399dd11232de", 15)]
[TestCase(@"https://github.com/mascarenhas/cosmo.git",
@"52ba6e3b25649d5b771721a6b7cc19150fbfadcd", 15)]
[TestCase(@"https://github.com/Olivine-Labs/luassert.git",
@"365522d7586079ca2c8d233051f355b3f3eda4a9", 15)]
[TestCase(@"https://github.com/TheLinx/SocialLua.git",
@"37cd94d2f79bc64b309116155dba807476e51f82", 15)]
[TestCase(@"https://github.com/Krevlorne/Tukui_Castbar.git",
@"3c2b58b687ea96b9dd327288160c74338ead9f2f", 15)]
[TestCase(@"https://github.com/farhaven/awesome-configs.git",
@"6b0a8b6b0f30836d1d0bc2e30d7b9dbd613c61d4", 15)]
[TestCase(@"https://github.com/davidhollander/ox.git",
@"f63d0dfd30da567e5604b9a92d2f6f64e1cd9de0", 15)]
[TestCase(@"https://github.com/openitg/itg3theme.git",
@"7aa72330b22f0a37f4acaa666904b6a93ae9efe9", 15)]
[TestCase(@"https://github.com/jasonsantos/remdebug.git",
@"8d16df8262d21cee5a882cec46964f72e4a353de", 15)]
[TestCase(@"https://github.com/liyanrui/zhfonts.git",
@"714bab914a770b6c594b0f32fd84a5d69b47bbd1", 15)]
[TestCase(@"https://github.com/mkosler/LoveAStar.git",
@"d8ab63403b084dcb52587cf3264ab415e0523cc1", 15)]
[TestCase(@"https://github.com/tomasguisasola/luasoap.git",
@"af1e100281cee4b972df10121e37e51d53367a98", 15)]
[TestCase(@"https://github.com/zm33y/vlc-lua-sia.git",
@"6f6f1f1012e5e8c9f05d83e1dacb4b1281e62811", 15)]
[TestCase(@"https://github.com/GmodStarfall/Starfall.git",
@"27677e471dc07ebb9ad1456622c2d76dcd1d462f", 15)]
[TestCase(@"https://github.com/moteus/lzmq.git",
@"185e626ef6236b0bcddcaa37f0b0590406aba2ab", 15)]
[TestCase(@"https://github.com/Elv13/blind.git",
@"f6f2057d898b671d6bcf78c192ba2eba722f3104", 15)]
[TestCase(@"https://github.com/linkedin/dmarc-msys.git",
@"d05cc79753b87701d0ee0e99ee7e3fd29f2e4a37", 15)]
[TestCase(@"https://github.com/gvx/richtext.git",
@"28bc742afbb39a27a3dd38ea8976a4e9d56189b1", 14)]
[TestCase(@"https://github.com/rjpower/luajit-interpreter.git",
@"1bb90c05f3819d763653fbe889849e7ecfffd384", 14)]
[TestCase(@"https://github.com/neomantra/nm-luajit-playground.git",
@"32dadfd516e2a3d5c3fb6d91206707fd990f7146", 14)]
[TestCase(@"https://github.com/CapsAdmin/pac3.git",
@"762cb8dc2c322786fba95ff8773f2b9b2559d7ee", 14)]
[TestCase(@"https://github.com/microlua/release.git",
@"b54d7d186799a9d1655dcd41889dda27184155e1", 14)]
[TestCase(@"https://github.com/Zireael07/The-Veins-of-the-Earth.git",
@"0c3018ffb67bef0f65b7550326c75e593b6bd02e", 14)]
[TestCase(@"https://github.com/Spyder638/SuperSprite.git",
@"c42de75cbec3db94531e3ed9c52b9aca0ece9607", 14)]
[TestCase(@"https://github.com/dmzgroup/io.git",
@"621e0bb486641c69e7049cf9ea26dae80f736aa4", 14)]
[TestCase(@"https://github.com/koniu/awesome-configs.git",
@"9e540de676b305857e526830f14fabe7e65ce53b", 14)]
[TestCase(@"https://github.com/haste/oGlow.git",
@"fb0007a86fb334cbca8a8e2f99992d8e44cd23c9", 14)]
[TestCase(@"https://github.com/mikelovesrobots/lua-enumerable.git",
@"be92fdc222684608aacec82020eff9dfc8bcd231", 14)]
[TestCase(@"https://github.com/prefanatic/exsto.git",
@"fcbf79c7f1ef5d84fe6fb57738ca3f4747ccd866", 14)]
[TestCase(@"https://github.com/philnelson/A-Star-Pathfinding-For-Lua.git",
@"486dcd36709215bec7a8d8841439c168149cbd84", 14)]
[TestCase(@"https://github.com/alfredbaudisch/Corona-Transition-Manager.git",
@"126189b0e8cfd5853e8663e55c3cde5283db0889", 14)]
[TestCase(@"https://github.com/nanomsg/luajit-nanomsg.git",
@"fdeb72d290f0fc0c02ee4c96ee9e08b96bb53b80", 14)]
[TestCase(@"https://github.com/GloryFish/lua-astar.git",
@"5dcffa1d5dddf19592385b798d9310eafa0aeec2", 14)]
[TestCase(@"https://github.com/sinaris/AsphyxiaUI---v6.git",
@"b0f568239cf8c42a639f3627306c9c519f417a46", 14)]
[TestCase(@"https://github.com/ColonelThirtyTwo/lsqlite3-ffi.git",
@"a7e36bb057ad9f22010912f3ecf732e5333973d4", 14)]
[TestCase(@"https://github.com/aconbere/vert.git",
@"8974337bca570830c68a9dce42fcf1e05c1efec1", 14)]
[TestCase(@"https://github.com/amireh/lua_cliargs.git",
@"504e5aa9ab8929404d129046fb9493386962a95a", 14)]
[TestCase(@"https://github.com/Saegor/isomap.git",
@"a6e54476a05a171f72493c7ccb7dde0d3e095a81", 14)]
[TestCase(@"https://github.com/weshoke/DSL.git",
@"da0791b4e6855efd0f63b8a1a597db1186ff0854", 14)]
[TestCase(@"https://github.com/tophermade/Menu-Structure.git",
@"0a32c1809a325c904df9143fdfec03c02a17f69d", 14)]
[TestCase(@"https://github.com/speedata/luaqrcode.git",
@"6f48c2f990d0e2a2d0964c299a3a8b38bdcc4370", 14)]
[TestCase(@"https://github.com/bsm/lua-resty-http.git",
@"50210eb954a25cf497d5395a3dadf6a3b1027940", 14)]
[TestCase(@"https://github.com/kikito/i18n.lua.git",
@"4e2b9c2a945bd9681f811f885a9148ae09653299", 14)]
[TestCase(@"https://github.com/SidaBoL/Scripts.git",
@"8fd8b9551ee13f5caf3c318db68d9a0571ce1f78", 14)]
[TestCase(@"https://github.com/vfasky/catke-for-luvit.git",
@"578f642191086d0ea00095fcb3f38e5f106229d9", 14)]
[TestCase(@"https://github.com/Xruptor/BagSync.git",
@"c9129b229a1a8a941567826136d079bf6339ad4b", 13)]
[TestCase(@"https://github.com/Abica/lime.git",
@"faf1e6074abc76ec22300f1d88dac466aebb834d", 13)]
[TestCase(@"https://github.com/pib/calabash.git",
@"2c837819bd3d5c9fa618a06f898c5fc80c2bf480", 13)]
[TestCase(@"https://github.com/capmar/spriter-love2d.git",
@"4867632e829a1e2c4384cc77bf4f9d25e1273e31", 13)]
[TestCase(@"https://github.com/alexander-yakushev/menubar.git",
@"b2a184d8b3312b48ec1e17e2c5092cc0f15323c2", 13)]
[TestCase(@"https://github.com/Repooc/ElvUI_SLE.git",
@"4f5e0ad360a9ee6392d656da50bc2448b334206c", 13)]
[TestCase(@"https://github.com/jzwinck/redis-wireshark.git",
@"23842e5a9dc891782466f7a1eee5f303482edc52", 13)]
[TestCase(@"https://github.com/ELLIOTTCABLE/System.git",
@"d8a54cbc8dba8af73c26087506c458272037ab8b", 13)]
[TestCase(@"https://github.com/thehunmonkgroup/luchia.git",
@"3f70eb6b6ac510c710e5052c7db9d727a7a3530f", 13)]
[TestCase(@"https://github.com/DanielFGray/dotfiles.git",
@"880e84e14699212436cafb3c20d8f07319862a2f", 13)]
[TestCase(@"https://github.com/dmzgroup/lmk.git",
@"134c9237e48fc17a2252a2a705f5c36a467b40ac", 13)]
[TestCase(@"https://github.com/Shrike78/Shilke2D.git",
@"8da54c029e2e121511144f17d2f600cd267d4c1c", 13)]
[TestCase(@"https://github.com/Sorroko/cclite.git",
@"da8fc58b7e5f9d6907971d84bfa1a7b6f1d8b7da", 13)]
[TestCase(@"https://github.com/clementfarabet/graphicsmagick.git",
@"4c28978faf1b5e7a63170553eb4d2b2274b0307b", 13)]
[TestCase(@"https://github.com/katcipis/luanotify.git",
@"de6abf748c1aeae2eaec760da4420d8ee2e41e60", 13)]