forked from exKAZUu/RepositoryProbe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsharp.txt
1982 lines (1982 loc) · 107 KB
/
csharp.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/SignalR/SignalR.git",
@"b940230aedc851c50775c2ed32ab96c476f10ec6", 4109)]
[TestCase(@"https://github.com/hbons/SparkleShare.git",
@"bc69e1d80ffd36b2b5dc36286f491bb38951f238", 3034)]
[TestCase(@"https://github.com/ServiceStack/ServiceStack.git",
@"6cb92e0429e2cce31ef68e4fa02801718b00dd4f", 2284)]
[TestCase(@"https://github.com/NancyFx/Nancy.git",
@"cdea9f2db9dca8c11d0d1a5d6335cd2b78207c5d", 2104)]
[TestCase(@"https://github.com/mono/mono.git",
@"6a7791058f83e62ed73a7cda21f037cc9a827a83", 2056)]
[TestCase(@"https://github.com/mono/MonoGame.git",
@"73fc2954b0cd83a4a7f3ddecdc56f155ff135e99", 1997)]
[TestCase(@"https://github.com/AutoMapper/AutoMapper.git",
@"af890ba90bd5fd00b3b62afebda014da153b34a1", 1855)]
[TestCase(@"https://github.com/restsharp/RestSharp.git",
@"70be25dae0edb44a1c962aee078e9dbf74cb4177", 1828)]
[TestCase(@"https://github.com/Redth/PushSharp.git",
@"19216ead2bfbbf36c4fcaa95dfa8469facc5a7ef", 1690)]
[TestCase(@"https://github.com/opserver/Opserver.git",
@"a170ea8bcda9f9e52d4aaff7339f3d198309369b", 1324)]
[TestCase(@"https://github.com/robconery/massive.git",
@"87075153609fe096bcbd9f81a6901c1b60e2e579", 1204)]
[TestCase(@"https://github.com/SamSaffron/dapper-dot-net.git",
@"885a8d46cbd67f09bd6a5e686a824759d79d5f78", 1182)]
[TestCase(@"https://github.com/ravendb/ravendb.git",
@"a60d8dd3ffaf5892d86d5fcf8a9a81bec71800e7", 1118)]
[TestCase(@"https://github.com/SamSaffron/MiniProfiler.git",
@"3744054e0686b2f88083b869a7f2fe7e1fa14e9c", 1113)]
[TestCase(@"https://github.com/jaredpar/VsVim.git",
@"86d9e298c9d117e54266501ae9c4dd35b4d345cb", 1097)]
[TestCase(@"https://github.com/jagregory/fluent-nhibernate.git",
@"4d2348d560b952abba72179b3c4097acf02f4b99", 1078)]
[TestCase(@"https://github.com/ninject/ninject.git",
@"f2a558f58e1492226614392acf10cea72130c437", 1007)]
[TestCase(@"https://github.com/mono/monodevelop.git",
@"1716affe5e0a1a69efd626d2dd41bd0c56113dfc", 998)]
[TestCase(@"https://github.com/gitextensions/gitextensions.git",
@"b57b3f4788dd000ea7d1bb5f6980e1e06977c5b9", 954)]
[TestCase(@"https://github.com/JabbR/JabbR.git",
@"e40634b4e6594ce4ebd6aea0a6864b8f61b1ed02", 927)]
[TestCase(@"https://github.com/SonyWWS/ATF.git",
@"bcbfc1277dc63455be0106f4644a3b6549e75623", 900)]
[TestCase(@"https://github.com/reactiveui/ReactiveUI.git",
@"45aaa51f5d5202a5c8d34ea3151955f0bce8a956", 889)]
[TestCase(@"https://github.com/icsharpcode/ILSpy.git",
@"056dfa1194fe01562dd8ad6908ed9cdff882618e", 867)]
[TestCase(@"https://github.com/markrendle/Simple.Data.git",
@"65ff01e482ce71190869001c221caa140feb70e5", 864)]
[TestCase(@"https://github.com/JamesNK/Newtonsoft.Json.git",
@"9e2581be74585605b4f49e0110d65c85c17cb323", 827)]
[TestCase(@"https://github.com/scriptcs/scriptcs.git",
@"fce68ff79b412c9acbadc8669614db498418abf5", 822)]
[TestCase(@"https://github.com/MahApps/MahApps.Metro.git",
@"36fe5e517e0c65116d288fdabf2e68a2a9494bd9", 800)]
[TestCase(@"https://github.com/mongodb/mongo-csharp-driver.git",
@"3f7996e297ba8756025c709979467982839c3277", 792)]
[TestCase(@"https://github.com/Squirrel/Squirrel.Windows.git",
@"04a44954ffd416397c6b9156a837a155efe9bb49", 767)]
[TestCase(@"https://github.com/sq/JSIL.git",
@"a1c58ec111a107e2d670d4a0548fcfc1f3460394", 751)]
[TestCase(@"https://github.com/MvvmCross/MvvmCross.git",
@"fd16e13d05678e578ddc96938a680b3d94d8a496", 708)]
[TestCase(@"https://github.com/DotNetOpenAuth/DotNetOpenAuth.git",
@"c9df84fda7963fe84848c3636d87696bc22169a5", 699)]
[TestCase(@"https://github.com/Glimpse/Glimpse.git",
@"b78f1c8b336e86278efea95c115f8a9a404ab901", 692)]
[TestCase(@"https://github.com/OpenRA/OpenRA.git",
@"5e1e45631a31a1b189a706d5c829999b9b5b8653", 691)]
[TestCase(@"https://github.com/schambers/fluentmigrator.git",
@"73c831c94eb4b28ba11f55c6fb63cd96748247d5", 655)]
[TestCase(@"https://github.com/NEventStore/NEventStore.git",
@"828bb20ba29acf0a4e3f1d4982045e01e6418b98", 648)]
[TestCase(@"https://github.com/akavache/Akavache.git",
@"d04819c6a29205cc39740ae54b5fa473b25809db", 646)]
[TestCase(@"https://github.com/Code52/DownmarkerWPF.git",
@"5bea50ace54a97258d3778d79c487b3e63a5a462", 632)]
[TestCase(@"https://github.com/git-tfs/git-tfs.git",
@"69eb7f240565bec3f1a1d9cd5d3afddd71be0280", 611)]
[TestCase(@"https://github.com/nhibernate/nhibernate-core.git",
@"5e78ad6c7d5d37aebfeca75d832e44eded89e894", 602)]
[TestCase(@"https://github.com/xamarin/monodroid-samples.git",
@"4851316a320c9c6ce0b57348d05c6dc6e8819e1c", 599)]
[TestCase(@"https://github.com/henon/GitSharp.git",
@"4cef5fe76e80cfb457abb7d5f9d8c5040affa4c5", 590)]
[TestCase(@"https://github.com/cefsharp/CefSharp.git",
@"9bdb5376371c28fb1893de8b39c9ad7babfc0067", 578)]
[TestCase(@"https://github.com/quartznet/quartznet.git",
@"8d3d11b51ffc37ae0bdb06b701488e591dbb5580", 578)]
[TestCase(@"https://github.com/facebook-csharp-sdk/facebook-csharp-sdk.git",
@"332f32799530b934ebe9f0c94e3ff564697a795c", 572)]
[TestCase(@"https://github.com/Particular/NServiceBus.git",
@"8002a95026e2487347f4ba28d83fca7ea5feb924", 565)]
[TestCase(@"https://github.com/projectkudu/kudu.git",
@"b1f9bc97370ded46461e0b4f3a1345189d297d81", 560)]
[TestCase(@"https://github.com/EventStore/EventStore.git",
@"96c1a28325d80577cccc51b35af73ffa5d307d0e", 560)]
[TestCase(@"https://github.com/dotless/dotless.git",
@"1b1bea4be98954551c80c9fa9fd3c825be647880", 547)]
[TestCase(@"https://github.com/Antaris/RazorEngine.git",
@"8adc810c0dea0d364b85678d49f4b25fcc27e720", 547)]
[TestCase(@"https://github.com/ServiceStack/ServiceStack.Redis.git",
@"718395587df889fe708c629421f66ea129a8f109", 534)]
[TestCase(@"https://github.com/toptensoftware/PetaPoco.git",
@"8358e323ea02f17cd5e3565391b70bb0dd06f236", 534)]
[TestCase(@"https://github.com/subsonic/SubSonic-3.0.git",
@"18114a145ff6cdaaf4dbf1e6c28af443adc956b7", 531)]
[TestCase(@"https://github.com/libgit2/libgit2sharp.git",
@"cccecb2a5eddcb9e952cfd8be545396312ee24d5", 524)]
[TestCase(@"https://github.com/ServiceStack/ServiceStack.Text.git",
@"ec31bb5b4bb191ce8fd148bcc63f3e3378d58fa9", 518)]
[TestCase(@"https://github.com/MehdiK/Humanizer.git",
@"45ac92ebd5005a708e98dc51a5e309096a58ef52", 518)]
[TestCase(@"https://github.com/MattRix/Futile.git",
@"9d56ee479ee966424c8ef8ccc4da6aa7a5d001ca", 502)]
[TestCase(@"https://github.com/Azure/azure-sdk-for-net.git",
@"37fc9b1954a1c3bbf94e6123697069262fe905f8", 494)]
[TestCase(@"https://github.com/madskristensen/WebEssentials2013.git",
@"1de6c4f84358e0a1adf8d61bbcc8dfd20197dc96", 491)]
[TestCase(@"https://github.com/nikhilk/scriptsharp.git",
@"d79f89354dc6b9eb61da56cae35ce84fbfe1e94f", 483)]
[TestCase(@"https://github.com/xamarin/monotouch-samples.git",
@"e607885cdff9548721ea7b08ff07c1aca81eb2bf", 475)]
[TestCase(@"https://github.com/machine/machine.specifications.git",
@"85a0d917cc64abf3699a3bafd92a5ba6d4e4161a", 471)]
[TestCase(@"https://github.com/NLog/NLog.git",
@"2c609e48a5f3ea26786b2d66c9112e269e3ac536", 460)]
[TestCase(@"https://github.com/umbraco/Umbraco-CMS.git",
@"5697809ce930e1b8f9f111586c2b4bb59e8f3869", 458)]
[TestCase(@"https://github.com/jacksonh/manos.git",
@"300450cd5c8a146cdf5e9cbaa837ecccfd8ab951", 451)]
[TestCase(@"https://github.com/icsharpcode/SharpDevelop.git",
@"d3a44776f32ec7829d60e18c3a57538eb559974c", 451)]
[TestCase(@"https://github.com/gregoryyoung/m-r.git",
@"51e39f81b773146c12e0ee7150b5a48076893a13", 451)]
[TestCase(@"https://github.com/andrewdavey/cassette.git",
@"38e229f1d7bfd41c65f75fb73f1af10b076c31cb", 447)]
[TestCase(@"https://github.com/waseems/inbox2_desktop.git",
@"221c56e0c83b0e873314767f0f9a53e25416343a", 447)]
[TestCase(@"https://github.com/NuGet/NuGetGallery.git",
@"6f365c1600acd9f9dc623a9741c606be60bcf07c", 420)]
[TestCase(@"https://github.com/migueldeicaza/MonoTouch.Dialog.git",
@"6dfe7f61ea40486310c68fd12f2988d6d242f7f7", 418)]
[TestCase(@"https://github.com/oddgames/UIToolkit.git",
@"b60aa4b1523d6a6fef33c11fdaad00364e9bb9a0", 416)]
[TestCase(@"https://github.com/NewEraCracker/LOIC.git",
@"c847036537d92ab8548e8e5058ac8dfa6846acea", 415)]
[TestCase(@"https://github.com/samus/mongodb-csharp.git",
@"6397a0f032f24227894afa6ec37e92dd18dd0b3f", 408)]
[TestCase(@"https://github.com/smsohan/MvcMailer.git",
@"475099d384597792dfcddfa557569e4f70bec308", 408)]
[TestCase(@"https://github.com/octokit/octokit.net.git",
@"20a25d57991ebd5f6f5a812ed7bb01ec006aa989", 391)]
[TestCase(@"https://github.com/atheken/NoRM.git",
@"f73ee334145e7e5e94f0b78e6b27cda56ae2fdc6", 389)]
[TestCase(@"https://github.com/mccalltd/AttributeRouting.git",
@"028202b2f72d5fb139e6d9970430e077f421efc2", 385)]
[TestCase(@"https://github.com/ServiceStack/ServiceStack.OrmLite.git",
@"0af1405cd208c2c1b06d17b115f7344adc9e6557", 384)]
[TestCase(@"https://github.com/JeremySkinner/FluentValidation.git",
@"7803000a4c709347b862ac5b8d500c175dfc460a", 381)]
[TestCase(@"https://github.com/elasticsearch/elasticsearch-net.git",
@"903060e3094de06d01a88b32ed07e588701391aa", 377)]
[TestCase(@"https://github.com/mikehadlow/EasyNetQ.git",
@"74a5178fd9d85f316c34f5f2c13fe2e4bb0107d8", 374)]
[TestCase(@"https://github.com/DarthFubuMVC/fubumvc.git",
@"371eeac6d32da0c5fa73892f432c27cb1fc207d8", 371)]
[TestCase(@"https://github.com/kayak/kayak.git",
@"f3fb78490243ee59d100811e802a0dd5b6f3daae", 365)]
[TestCase(@"https://github.com/JoshClose/CsvHelper.git",
@"b5d0563510bafcf1cbba7ed3423d6b9d19349a46", 358)]
[TestCase(@"https://github.com/structuremap/structuremap.git",
@"a1fdad054fabd10b129b17ec36cb78f7e2331ae4", 357)]
[TestCase(@"https://github.com/MarkNijhof/Fohjin.git",
@"e22c7e147f682c73032aa4f6a8295c63d9c13185", 357)]
[TestCase(@"https://github.com/jbevain/cecil.git",
@"b6cc4bb1dbe489170af429b87a5802182e27a37a", 356)]
[TestCase(@"https://github.com/brockallen/BrockAllen.MembershipReboot.git",
@"55ff159604b74c719c02aaaf85c99bd316a7dcca", 355)]
[TestCase(@"https://github.com/mathnet/mathnet-numerics.git",
@"515ebee32b1a40a7822f98e965bb8b81651f8b5e", 352)]
[TestCase(@"https://github.com/jamietre/CsQuery.git",
@"aba9f82fffe79d0827a429f088565dc243e23545", 351)]
[TestCase(@"https://github.com/Rduerden/Node.cs.git",
@"1e5c77f2ef8f7b524656763c4c371f7aee966f4a", 348)]
[TestCase(@"https://github.com/danielcrenna/tweetsharp.git",
@"e3d00e44aad40419b215a6f9a591b989d25519d6", 347)]
[TestCase(@"https://github.com/mono/monotouch-bindings.git",
@"e8cdef83e2e877af51992b8a3c9fd30879851f3d", 340)]
[TestCase(@"https://github.com/liveservices/LiveSDK.git",
@"8912c05e19a83b34718ffff1930936a007ce5294", 339)]
[TestCase(@"https://github.com/qianlifeng/Wox.git",
@"b07d1b027c42c045bce8304b40b4c27e4d03248f", 336)]
[TestCase(@"https://github.com/xamarin/mobile-samples.git",
@"c2e0e43d9ccf7734efd551744bfe24959f4504a0", 332)]
[TestCase(@"https://github.com/clojure/clojure-clr.git",
@"0a23829782aca9005f0db733c46a6ce65262020c", 332)]
[TestCase(@"https://github.com/xebecnan/UniLua.git",
@"c3ca0e543970928302b5b21e83a9b913ec710173", 329)]
[TestCase(@"https://github.com/jkowalski/NLog.git",
@"72f649596504d832eae0b9535c2d2e7583382182", 328)]
[TestCase(@"https://github.com/todbot/blink1.git",
@"afbb60c8a3c586770a2f244ea8a3907fd020ba53", 327)]
[TestCase(@"https://github.com/loresoft/msbuildtasks.git",
@"fa3b1cb19afb83c6a005547d00465b7233cf5ab7", 324)]
[TestCase(@"https://github.com/mono/xwt.git",
@"11b0131af050526dad2c105ce74cfb085c2450ff", 323)]
[TestCase(@"https://github.com/mspnp/cqrs-journey-code.git",
@"dbb9b8a28eedbb0e03463d03091f44ff0c935567", 323)]
[TestCase(@"https://github.com/ncqrs/ncqrs.git",
@"09ef321d1ad6dcea30584e586ade9526104c6e51", 320)]
[TestCase(@"https://github.com/DropNet/DropNet.git",
@"ee955df5a86ccba3a50e6e3f1db8ab2e1dc10fb9", 317)]
[TestCase(@"https://github.com/sixthsense/sixthsense.git",
@"d0185b77c5ffdd8d0e07a87a98424db3cc21f76a", 315)]
[TestCase(@"https://github.com/Jessecar96/SteamBot.git",
@"5af6a0b85a82620862236077336964b4b76b19b5", 311)]
[TestCase(@"https://github.com/VerbalExpressions/CSharpVerbalExpressions.git",
@"245a871122b6233c1911911553539fd6735d5556", 310)]
[TestCase(@"https://github.com/OpenCover/opencover.git",
@"4bd5079ef2cde7410a42a5af1494857eee6231ba", 309)]
[TestCase(@"https://github.com/richhickey/clojure-clr.git",
@"2c7e20cd3c6ffc64b783ddb3cb7984fb93472ad4", 308)]
[TestCase(@"https://github.com/mausch/SolrNet.git",
@"f29b03107c1922226f888a64f0ed0b848c56fb54", 305)]
[TestCase(@"https://github.com/nsubstitute/NSubstitute.git",
@"d787176463bde8a9793709756575a37b1acf8c17", 303)]
[TestCase(@"https://github.com/icsharpcode/NRefactory.git",
@"3f78bdbedb78cc3e3023bdfbeda016de194acffd", 300)]
[TestCase(@"https://github.com/WebApiContrib/WebAPIContrib.git",
@"fe88ff3c0b3871c77b062dbbe9a8ff87107b1d9e", 298)]
[TestCase(@"https://github.com/loresoft/EntityFramework.Extended.git",
@"2a999b949530458edc4fd39861e52e043295177d", 298)]
[TestCase(@"https://github.com/NyxStudios/TShock.git",
@"61d05ffdc6b3fb9544be72d333585a8aace835da", 297)]
[TestCase(@"https://github.com/Haacked/SeeGit.git",
@"3c47da93e5d4260612daa8aff3c6ce97da672936", 295)]
[TestCase(@"https://github.com/timheuer/callisto.git",
@"fb9cbac2ccc7900cecf69f722045ca881dbddba3", 290)]
[TestCase(@"https://github.com/thinktecture/Thinktecture.IdentityModel.45.git",
@"a2fed40e655beac76f54f11dde1c3b907079a4d1", 289)]
[TestCase(@"https://github.com/Lokad/lokad-cqrs.git",
@"75e16de6103c3a6fd9d59846ccea6eeb88185dca", 289)]
[TestCase(@"https://github.com/Fody/Fody.git",
@"77a985ae84e22c032de7f6fb29ed259ec804e5dd", 286)]
[TestCase(@"https://github.com/AutoFixture/AutoFixture.git",
@"f945ef7e65477f23f89e96d3a6302b7a96d0cf37", 285)]
[TestCase(@"https://github.com/playgameservices/play-games-plugin-for-unity.git",
@"3ad9798396cc5e443815d5c1438bcebc54d98ed9", 282)]
[TestCase(@"https://github.com/erichexter/twitter.bootstrap.mvc.git",
@"d3275c3e0c1d9f061a15442cb2d400133b63c137", 281)]
[TestCase(@"https://github.com/MassTransit/MassTransit.git",
@"b7cd961d72deec199542e9ee256154671873f54a", 278)]
[TestCase(@"https://github.com/maartenba/MvcSiteMapProvider.git",
@"92ad5eb87a16597c2b18cbb6daf56a4491a652c9", 277)]
[TestCase(@"https://github.com/Moq/moq4.git",
@"ac31aeca01056e3608540d5b5d043ba013f19abe", 276)]
[TestCase(@"https://github.com/Azure/azure-sdk-tools.git",
@"94432b2152a43d544df8a06c6b60d60d79ed6aee", 274)]
[TestCase(@"https://github.com/mono/monotorrent.git",
@"3c201b9e3c68b33243a7af61678fb948a0189461", 274)]
[TestCase(@"https://github.com/robconery/biggy.git",
@"0c7a0cb8f08b0ac7e5d87f91c5617d4cc6e21b84", 272)]
[TestCase(@"https://github.com/sestoft/C5.git",
@"0350623579519d17494da788744ecfad4857cfee", 272)]
[TestCase(@"https://github.com/jdiamond/Nustache.git",
@"957a95f26265876a42dcd8934708bab95d01ef87", 269)]
[TestCase(@"https://github.com/statianzo/Fleck.git",
@"06837f548345fa06e91c01312a0f5c18fd6f012f", 269)]
[TestCase(@"https://github.com/MarlabsInc/SocialGoal.git",
@"d6cc337d3f97be6f3fec5b66aa2c8982e800c98c", 263)]
[TestCase(@"https://github.com/danielcrenna/metrics-net.git",
@"4b4b5dd49eedd387ac0b2423be402ce6e20a4d87", 260)]
[TestCase(@"https://github.com/Compilify/Compilify.git",
@"dc523cffd6205a142e70f45c735f87a1eb40a712", 252)]
[TestCase(@"https://github.com/gsscoder/commandline.git",
@"a3fa34f261fe5511f2c8bd7d259f3906b1688e2c", 251)]
[TestCase(@"https://github.com/Code52/pretzel.git",
@"90b1739e9d1fbe397e9ff20ca5f2d1526d5d5c61", 249)]
[TestCase(@"https://github.com/FakeItEasy/FakeItEasy.git",
@"d8c919b852e7668217d5463cbe20d97402bde61a", 247)]
[TestCase(@"https://github.com/bamboo/boo.git",
@"6a1040dfa2ee35a39b0a05b7b252695662c8a7fb", 238)]
[TestCase(@"https://github.com/ShareX/ShareX.git",
@"110277b4196986e4e8e0dcfab7ef457942d92c7d", 235)]
[TestCase(@"https://github.com/chucknorris/roundhouse.git",
@"812f4debbb0f31896af08e9ef1dd0b47f1686882", 234)]
[TestCase(@"https://github.com/zeromq/clrzmq.git",
@"76404a94e0a0bbb0aff23e5500eb5af0a70bda05", 234)]
[TestCase(@"https://github.com/enyim/EnyimMemcached.git",
@"62d1cbfc397fca400feeed68ff91844d2874624c", 234)]
[TestCase(@"https://github.com/0xd4d/de4dot.git",
@"7222bdbe426f4296c93517551022efc82cd5b9cd", 232)]
[TestCase(@"https://github.com/David20321/FTJ.git",
@"802f54b31eebd3831ee9a7732146f9859d1074e5", 230)]
[TestCase(@"https://github.com/grumpydev/TinyIoC.git",
@"fda59bd5cb53864835ff8b025e31ef10a7a77f68", 228)]
[TestCase(@"https://github.com/ServiceStack/ServiceStack.Examples.git",
@"8eafa0b5bc45976e1cdbe54240df0a5b90f124e5", 227)]
[TestCase(@"https://github.com/Olivine-Labs/Alchemy-Websockets.git",
@"42c00b6d29116834432de37ea77fa954b093bc74", 226)]
[TestCase(@"https://github.com/mrward/monodevelop-nuget-addin.git",
@"f593536fcd779f4e819def961c676e392eee0ff3", 225)]
[TestCase(@"https://github.com/ninject/ninject.web.mvc.git",
@"41b0136be6d265f82396d382ac87d999eb981a87", 224)]
[TestCase(@"https://github.com/thedillonb/CodeHub.git",
@"a6272d13f4db89f99e9ce6afb7f88a1f987a969c", 224)]
[TestCase(@"https://github.com/Azure/azure-mobile-services.git",
@"2deee4c26a010a1411d2f6f2d104a6a76aef9159", 223)]
[TestCase(@"https://github.com/Redth/APNS-Sharp.git",
@"4a5919f753127ebf2b4600f64591a5f3cdc68b28", 223)]
[TestCase(@"https://github.com/mono/monomac.git",
@"99fc8d74c5357325c42de4bc5eb4594bf792c392", 223)]
[TestCase(@"https://github.com/AArnott/IronPigeon.git",
@"225a50009f396ac1b8cde599a1b67ef25c96f9cd", 220)]
[TestCase(@"https://github.com/MediaBrowser/MediaBrowser.git",
@"026fd77a0b8cfa353ad8212c0b32111de74cb932", 216)]
[TestCase(@"https://github.com/n2cms/n2cms.git",
@"04f1a6ce84311561c81576c1a7d6deac968ac982", 215)]
[TestCase(@"https://github.com/real-logic/simple-binary-encoding.git",
@"0741472eaf8cec63d2f41e6d97c3cc9952941874", 214)]
[TestCase(@"https://github.com/pbhogan/InControl.git",
@"f431490f92dd15f5684e2067e6b6ae0b27a77a85", 214)]
[TestCase(@"https://github.com/viperneo/winforms-modernui.git",
@"f76aa9a781d3f2051942253fc1f12b6d9fbe49f9", 214)]
[TestCase(@"https://github.com/srkirkland/DataAnnotationsExtensions.git",
@"b1f9af625edfaa5b0573eeb2ad89213a63665766", 214)]
[TestCase(@"https://github.com/ccnet/CruiseControl.NET.git",
@"ef2dfcc5364d9219d142287399642f5716cbd998", 213)]
[TestCase(@"https://github.com/danielcrenna/hammock.git",
@"2f2ace45511d0571ecea2202fc90d339853862cf", 213)]
[TestCase(@"https://github.com/ricardojmendez/UnitySteer.git",
@"77ebf2ee07c883e4d95c6cbd5eb16537ec0a8c3a", 208)]
[TestCase(@"https://github.com/ayende/rhino-mocks.git",
@"0f0f0557f8f383062327876045933dccfd6e7681", 204)]
[TestCase(@"https://github.com/koush/UniversalAdbDriver.git",
@"a6d6fd72f524feacc9f9a462e5d1a0cd27357899", 204)]
[TestCase(@"https://github.com/jsonfx/jsonfx.git",
@"bebad51d6c61188dd348b5951716b863aa6a91cc", 203)]
[TestCase(@"https://github.com/MITGameLab/OpenRelativity.git",
@"4036fb72915e59e7a940e7d8447b654c6f16ae59", 202)]
[TestCase(@"https://github.com/sharpdx/SharpDX.git",
@"dfe4bc426f92732f990a7ae13adde34e1967bb7f", 201)]
[TestCase(@"https://github.com/npgsql/Npgsql.git",
@"554c4d61630db0451e5765bd04db647e114d6d9e", 200)]
[TestCase(@"https://github.com/apache/lucene.net.git",
@"d7a8976051ab94f046661725660b52e66fc762a9", 199)]
[TestCase(@"https://github.com/prime31/GoKit.git",
@"dd03dab39afd9cc9991393daf5bf1dfb327a7f7f", 199)]
[TestCase(@"https://github.com/mono/ngit.git",
@"292a4e4ff81d1c4f59b04cd2b9bc1a1f588fa4eb", 199)]
[TestCase(@"https://github.com/mwrock/RequestReduce.git",
@"fe4f794336e7d347afcf92ab02557750157f198d", 199)]
[TestCase(@"https://github.com/dockpanelsuite/dockpanelsuite.git",
@"a04dc1a8f062f1d80e12ff231a3454521786dc88", 199)]
[TestCase(@"https://github.com/jaymedavis/stripe.net.git",
@"fe7348bc22c755e9feb1ec261db1728b3e6cc497", 198)]
[TestCase(@"https://github.com/SimpleAuthentication/SimpleAuthentication.git",
@"1e1e29ad0795f608bd6620e9e4ee2aa23ac53b1a", 196)]
[TestCase(@"https://github.com/SparkViewEngine/spark.git",
@"2487d4fe7c8820ed4be956ffbce6a409ed8c6717", 193)]
[TestCase(@"https://github.com/disruptor-net/Disruptor-net.git",
@"8fc6cde3b6f806d05c16b931113cd82ba68180d6", 193)]
[TestCase(@"https://github.com/erik-kallen/SaltarelleCompiler.git",
@"d13bccaeb825ed2c3709b5cf5f2db668987f9a68", 192)]
[TestCase(@"https://github.com/featurist/coypu.git",
@"23938a9abc9bb36e39ccf041edc9a106da769867", 192)]
[TestCase(@"https://github.com/hhariri/EasyHttp.git",
@"c647610cd0a126d6a534f9818a3e1bebd19c37c3", 192)]
[TestCase(@"https://github.com/ASP-NET-MVC/aspnetwebstack.git",
@"d4cb4a90d09686c0dd8cdba9920c643eb04f6ca4", 192)]
[TestCase(@"https://github.com/openrasta/openrasta-stable.git",
@"49d8498f52583ef97b82d4d01dd1dfebef665648", 190)]
[TestCase(@"https://github.com/yysun/Git-Source-Control-Provider.git",
@"dd8bd933482600f2caf5c2dd935327fbfde8b057", 187)]
[TestCase(@"https://github.com/autofac/Autofac.git",
@"8c0732e120b55d277dc9313827fe02bbde289f3e", 184)]
[TestCase(@"https://github.com/CartBlanche/MonoGame-Samples.git",
@"2a2528583473bb0195a70c24c8b111c286962baa", 184)]
[TestCase(@"https://github.com/phatboyg/Stact.git",
@"0dc52852ffbbbeac937045269314af089e7e7af7", 183)]
[TestCase(@"https://github.com/NLua/NLua.git",
@"a766ff3a45c5edd4e1ce9654b180db5083f26489", 180)]
[TestCase(@"https://github.com/filipw/AspNetWebApi-OutputCache.git",
@"e03d6b257582dab3575fd8e86e93c421125376f4", 178)]
[TestCase(@"https://github.com/mono/taglib-sharp.git",
@"a5f6949a53d09ce63ee7495580d6802921a21f14", 178)]
[TestCase(@"https://github.com/akkadotnet/akka.net.git",
@"25b66cc2d62fc2bfc50cd4050ac6fdd6909063fa", 177)]
[TestCase(@"https://github.com/joliver/CommonDomain.git",
@"c7d3ca18d33ca3d056cb806ab8876d96cfe7a0a8", 175)]
[TestCase(@"https://github.com/repetier/Repetier-Host.git",
@"f5d808611a57c7aeb4f3aa6a5c70446f11f63c54", 175)]
[TestCase(@"https://github.com/sprache/Sprache.git",
@"744a80ea6b87bedf22e1ec4452ade8f8f5dc1fd1", 175)]
[TestCase(@"https://github.com/andyedinborough/aenetmail.git",
@"0b2d3f16578fbf39136f78853c3bcb8728895490", 174)]
[TestCase(@"https://github.com/fdorg/flashdevelop.git",
@"1b8c0f1f64775873015548fb80bd4baa1c9bdadd", 174)]
[TestCase(@"https://github.com/turquoiseowl/i18n.git",
@"8d0dd7b84707efdd04c8d3be889ed9b2c90ff8ae", 173)]
[TestCase(@"https://github.com/openrasta/openwrap.git",
@"9161caebbe699e3912995a089a35c2d68a013772", 172)]
[TestCase(@"https://github.com/SteamRE/SteamKit.git",
@"90cdecb2db34c03ef85f4e1d763930f17f0f38b6", 172)]
[TestCase(@"https://github.com/sones/sones.git",
@"773b7a7dbbad6032e18a28e011111a1fc2d37447", 172)]
[TestCase(@"https://github.com/tmsmith/Dapper-Extensions.git",
@"82a6c3f6a3ef37c6d6df129daf5face3aae196b5", 170)]
[TestCase(@"https://github.com/markrendle/Simple.Web.git",
@"b702f9c4b825c8c73a626ba4595d9ee31bc6ee39", 169)]
[TestCase(@"https://github.com/InteractiveLab/TouchScript.git",
@"f9d16e3a1bfcdc5e0221a52ab672bec8178b871c", 169)]
[TestCase(@"https://github.com/igor-tkachev/bltoolkit.git",
@"fea27c2c0b5b4dfb4af4a078a02a50ee7a1a5947", 168)]
[TestCase(@"https://github.com/zenogantner/MyMediaLite.git",
@"6690d45514e1fb40d23b93d0f8ea2c12c82adc17", 168)]
[TestCase(@"https://github.com/aws/aws-sdk-net.git",
@"9e518440a29097b56cee96943905b636b9beea74", 167)]
[TestCase(@"https://github.com/paf31/initialround.git",
@"6811c12818126106c101ba1c237e0c2d622bdaa7", 166)]
[TestCase(@"https://github.com/TestStack/White.git",
@"5fa36b4c59177f2da91e6c8aeb13276014bb9222", 164)]
[TestCase(@"https://github.com/dnewcome/Node.net.git",
@"b5cbbb45e6716fb8b05b1ad6d175f8b3c7d8e43d", 163)]
[TestCase(@"https://github.com/serilog/serilog.git",
@"f2d638baa8ed47bf824ed784dfb7bd17353b6734", 162)]
[TestCase(@"https://github.com/paulcbetts/refit.git",
@"dc0b50d0a634fe4202b6fdfba804a15e58b2b5d7", 162)]
[TestCase(@"https://github.com/mchidk/BinaryRage.git",
@"c4651ac248bb6117d68c4662ea8cedf90f8b7a2d", 162)]
[TestCase(@"https://github.com/Grabacr07/KanColleViewer.git",
@"dc6717a54be14a5dbe6592879277acc2c2f92c56", 161)]
[TestCase(@"https://github.com/migueldeicaza/TweetStation.git",
@"1691b7e173b4dea488af9ed9dc77d9daff855194", 160)]
[TestCase(@"https://github.com/picoe/Eto.git",
@"f1f02696eb79d6f35118c515cff5477378009416", 160)]
[TestCase(@"https://github.com/TehGimp/KerbalMultiPlayer.git",
@"852346c1fcfcbe939ecbde4587917bda96160a16", 158)]
[TestCase(@"https://github.com/BlueSpire/Caliburn.Micro.git",
@"d464ff559d2b2309c2fa085cf107875c8fa4692a", 158)]
[TestCase(@"https://github.com/twilio/twilio-csharp.git",
@"8bdf3a14b36c385f2c621990b6c547e00440b659", 157)]
[TestCase(@"https://github.com/benrhughes/todotxt.net.git",
@"3cf4522cc1d86a15a76547296f5509186150b4ee", 157)]
[TestCase(@"https://github.com/JuhaKiili/RagePixel.git",
@"991aca50d4fdc319a2d82f9d0df92b3b767655df", 156)]
[TestCase(@"https://github.com/craiggwilson/fluent-mongo.git",
@"481791637931621c8bbce98e777a6f68caeb1e77", 155)]
[TestCase(@"https://github.com/sta/websocket-sharp.git",
@"99f7c9616ef807332e95d70ee286d8a4e48cc65c", 155)]
[TestCase(@"https://github.com/vc3/Afterthought.git",
@"35e6ac7be836bb798d89eb5c8150ce0a3ba30f44", 155)]
[TestCase(@"https://github.com/thinkpixellab/bot.git",
@"0fe417e5f708a8887e07d1ab02f6711b307e6ac5", 155)]
[TestCase(@"https://github.com/zeromq/netmq.git",
@"8cda02a9de96b2254e2288a1d5a7f960ed00c4d0", 154)]
[TestCase(@"https://github.com/owin/owin.git",
@"826a356981d5698c6d0619e0574c682a3b696ae5", 153)]
[TestCase(@"https://github.com/icsharpcode/SharpZipLib.git",
@"c49a22d70a77819b1dc88309c91e99565aa9099b", 152)]
[TestCase(@"https://github.com/Haacked/CodeHaacks.git",
@"74d725b76ba7b43e7cd44b63019b3f711b5eb5eb", 152)]
[TestCase(@"https://github.com/BinaryConstruct/Terraria-Map-Editor.git",
@"c92474e23a4b95c4c61bf041789858cb50c80cc4", 151)]
[TestCase(@"https://github.com/kohsuke/winsw.git",
@"6250a2755b798726d07a2d7018975b29b65f38ff", 151)]
[TestCase(@"https://github.com/kellyelton/OCTGN.git",
@"fcd41ecd45d5f1de75b75b60b6f02f5421ef2498", 150)]
[TestCase(@"https://github.com/Moq/moq.git",
@"84221b633dc28da2c09da80a002be2a3aadcadb4", 149)]
[TestCase(@"https://github.com/DmitryEfimenko/TwitterBootstrapMvc.git",
@"0a561811a1b7189e49ee84fb3e2bf6864339e830", 148)]
[TestCase(@"https://github.com/NuGet/WebBackgrounder.git",
@"2c1df6aa80ddd4ee235a263e3474ef93984822da", 148)]
[TestCase(@"https://github.com/hibernating-rhinos/rhino-esb.git",
@"b4c4b697afed0a2d7f69cda688cbe8012b085782", 147)]
[TestCase(@"https://github.com/paulyoder/LinqToExcel.git",
@"235327996a79a510ce56328e949f8a947467f411", 146)]
[TestCase(@"https://github.com/exceptionless/Exceptionless.git",
@"021f217817d5bd2d0710034b64944982781c4881", 145)]
[TestCase(@"https://github.com/jstedfast/MimeKit.git",
@"a70df702d6828141d1f94136c5f23eb2c8b2cbae", 144)]
[TestCase(@"https://github.com/phatboyg/Magnum.git",
@"c9626b133a67185c5befff907cf45be9ff2c72ea", 144)]
[TestCase(@"https://github.com/DarthFubuMVC/htmltags.git",
@"5da6715c23d1a04bc384bd1a2ff2c2e9bb4b1eec", 143)]
[TestCase(@"https://github.com/MicrosoftResearchSVC/Naiad.git",
@"7ceaced529bb747713ba19307f6d2e5151eec899", 143)]
[TestCase(@"https://github.com/phendryx/superputty.git",
@"ce95576eb6cb6ad6d6393784edae1f0a62438d23", 143)]
[TestCase(@"https://github.com/jgeurts/FluentScheduler.git",
@"e6bac58d8e6809440da53b759105de8a7872479a", 143)]
[TestCase(@"https://github.com/Code52/carnac.git",
@"2afbceab4d25961445314293c93eae2551f05c44", 142)]
[TestCase(@"https://github.com/MuMech/MechJeb2.git",
@"6262cd1176544ba514727b8704399acb27e2cbcc", 141)]
[TestCase(@"https://github.com/formosatek/dotliquid.git",
@"d458a2f33fb49bb1c62c7c65f83186f59b39ec79", 141)]
[TestCase(@"https://github.com/Twitterizer/Twitterizer.git",
@"ab3fab9ebe0180acf68bfc82e47a736fd2f62eba", 140)]
[TestCase(@"https://github.com/polyethene/IronAHK.git",
@"a4ff409341651f5a1b4c637fa9e09de1c84084a3", 140)]
[TestCase(@"https://github.com/garora/TDD-Katas.git",
@"9e4bf23e64e51ef173d38fd7ad7d91d91e2a9dbb", 140)]
[TestCase(@"https://github.com/JeremySkinner/git-dot-aspx.git",
@"7172adceefc1c9a1fe5ade250a65b9f8290d6cde", 139)]
[TestCase(@"https://github.com/anurse/git-credential-winstore.git",
@"f617d1289d5e26f878e7c6e469b4cd60d7f1c056", 139)]
[TestCase(@"https://github.com/hmemcpy/AgentMulder.git",
@"56d215466a07004cf68f1233913f065e4ea509c5", 138)]
[TestCase(@"https://github.com/soomla/unity3d-store.git",
@"ca2858ae17aedeb1cb650deaf25467133c5e6889", 138)]
[TestCase(@"https://github.com/WCell/WCell.git",
@"5ae2d190d2a8c7ef484c841d57ba441645bfc10d", 138)]
[TestCase(@"https://github.com/xunit/xunit.git",
@"075bedaa4a25ca407b6a73f4e5c2f68298618967", 138)]
[TestCase(@"https://github.com/msgpack/msgpack-cli.git",
@"f5a6ec52c936a083fc2458cd747aec929f689367", 137)]
[TestCase(@"https://github.com/SirCmpwn/Craft.Net.git",
@"29f69992e97ccde525971e7fd28f33fed693b450", 136)]
[TestCase(@"https://github.com/riteshrao/ncommon.git",
@"c07b5b37d52a5b61d3a04b0b0eb87d9c04e3c9cb", 135)]
[TestCase(@"https://github.com/manojlds/cmd.git",
@"fbf81d6d5fda5e80bb4ec6ab3ed91b0bd531eacf", 134)]
[TestCase(@"https://github.com/cocos2d/cocos2d-x-for-xna.git",
@"4537342146219d6b7b1a65e6e37a593d03154b08", 133)]
[TestCase(@"https://github.com/paulcbetts/splat.git",
@"7f17708b13f6c3db1d3b5505a5211325bd8e1417", 133)]
[TestCase(@"https://github.com/adamdriscoll/poshtools.git",
@"23e28bf8a731f19a35d5c823658d8834750cd11b", 133)]
[TestCase(@"https://github.com/fluentcassandra/fluentcassandra.git",
@"c25726d83f2fc22d18de6c6f80ef3bd7466c2530", 132)]
[TestCase(@"https://github.com/NetEase/UnitySocketIO.git",
@"455010508c297806d8e18de253b9077a5f48b5d9", 132)]
[TestCase(@"https://github.com/dennisdoomen/fluentassertions.git",
@"fdfcedb25221ad6443058b631584cab4e5aa2ffe", 131)]
[TestCase(@"https://github.com/NickCraver/StackExchange.Exceptional.git",
@"84b8032f6be7d3459541f3432926b735db26c781", 130)]
[TestCase(@"https://github.com/AdamsLair/duality.git",
@"e8024f039fcea978a62d1e98855168d0b65a5582", 129)]
[TestCase(@"https://github.com/Codeusa/Borderless-Gaming.git",
@"0bfa051f59d94617ddc188a9cb60adfe318d206a", 129)]
[TestCase(@"https://github.com/ayende/rhino-etl.git",
@"88104d78c534af5b238283d71b5ab3039711e994", 129)]
[TestCase(@"https://github.com/NzbDrone/NzbDrone.git",
@"5bc820efedc769386fe722a0d863b7dae1359c19", 127)]
[TestCase(@"https://github.com/sorear/niecza.git",
@"48a8de321378f4c9447831bdc691615096473f0d", 127)]
[TestCase(@"https://github.com/philiplaureano/LinFu.git",
@"96c17c8c11d99c755bb02da3b4e35019754a9f33", 127)]
[TestCase(@"https://github.com/nant/nant.git",
@"7906a4d7e903b0ee26c466fefa58d7ba730f534c", 126)]
[TestCase(@"https://github.com/moserware/AES-Illustrated.git",
@"4de319f46ff331148c63f8cb074332dea8a6b889", 126)]
[TestCase(@"https://github.com/JetBrains/FSharper.git",
@"792af6933898342ba450752beacdeaa6d970ba3b", 125)]
[TestCase(@"https://github.com/SirCmpwn/bf-irc-bot.git",
@"db5660e0b1cac97bc8d8503fbe2883262b5c3dab", 124)]
[TestCase(@"https://github.com/stack72/TeamCitySharp.git",
@"3d2e6b33de5aac7ab4ba64777f9dbdee650c1572", 124)]
[TestCase(@"https://github.com/fehaar/FFWD.git",
@"fc98c0fdf119f5c62ec108d3462e3c5b74375ba1", 123)]
[TestCase(@"https://github.com/Pash-Project/Pash.git",
@"187b95597cbbb791758902d2bc190c94da6e232b", 123)]
[TestCase(@"https://github.com/koush/androidmono.git",
@"6b465fd8e9b576fcff0bd5c975f5dda416502242", 123)]
[TestCase(@"https://github.com/mono/cxxi.git",
@"b0796517cb8981c54549f9e480f3511f7b1e043f", 123)]
[TestCase(@"https://github.com/stirno/FluentAutomation.git",
@"d65630102cb9ccccbd687665797f9bf57b396810", 123)]
[TestCase(@"https://github.com/jstedfast/MailKit.git",
@"e2b6c3187cd458acd1af788eb5b5ce5e5c16f949", 122)]
[TestCase(@"https://github.com/stevehodgkiss/restful-routing.git",
@"f517649e9ee77838f01a90b7c7cda63669965a15", 122)]
[TestCase(@"https://github.com/frabert/NetLua.git",
@"67bf607bcbe8eac1f3a6b0118699ece5fa43484d", 122)]
[TestCase(@"https://github.com/wojilu/wojilu.git",
@"83a2f1c850ec49cee0f40cf8fa71bcd2d8e92313", 122)]
[TestCase(@"https://github.com/kristofferahl/FluentSecurity.git",
@"407426d061892422671305386ca48bd4be314154", 121)]
[TestCase(@"https://github.com/Cocos2DXNA/cocos2d-xna.git",
@"93a246dbb4b5717a3dfa34daf0ef54c73c2c3293", 121)]
[TestCase(@"https://github.com/spring-projects/spring-net.git",
@"a32fee13be53e1f792c0c0cacebe2ab06f276dbb", 121)]
[TestCase(@"https://github.com/opentween/OpenTween.git",
@"c5c129e708dc018011134908b928fbee53cecfb6", 120)]
[TestCase(@"https://github.com/Arctium/Arctium-WoW.git",
@"5f76e9ecd934e557e3dc250c2bde3566538e7d41", 120)]
[TestCase(@"https://github.com/ishani/ClangVSx.git",
@"b3c184e2d2102cd919138ae3cc825eb2ffce613e", 119)]
[TestCase(@"https://github.com/moserware/Skills.git",
@"ee312fd39db913de2fc297951dc663e12dc7e504", 118)]
[TestCase(@"https://github.com/chucknorris/dropkick.git",
@"d4fc1f090d45364a142a97f81d037e906c58e7fc", 117)]
[TestCase(@"https://github.com/iloire/ASP.NET-MVC-ACME-Invoicing--App.git",
@"90829135440c98dfdfd9a8805ee4675968feac30", 117)]
[TestCase(@"https://github.com/TaoK/PoorMansTSqlFormatter.git",
@"4fd83bb2c0bfc87410e05385cfe4da6a12f689d1", 117)]
[TestCase(@"https://github.com/castleproject/Castle.Windsor-READONLY.git",
@"8e2b032b5e88e6948eda1a4f0f2fb96bd53bcb78", 116)]
[TestCase(@"https://github.com/PavelTorgashov/FastColoredTextBox.git",
@"85e0c7a31a27ffc80eb10d3e3883e880d43325e4", 116)]
[TestCase(@"https://github.com/rebus-org/Rebus.git",
@"4504fc3779aee4c766cc5271c4a2b9d1af60f5f3", 116)]
[TestCase(@"https://github.com/tekpub/mvc3.git",
@"35181e89d02aebef40709926a388050981839b93", 115)]
[TestCase(@"https://github.com/kerryjiang/SuperSocket.git",
@"d08029e941f3900b227cf6c701b69d9bf017935c", 115)]
[TestCase(@"https://github.com/mattflo/NSpec.git",
@"5fc9d5173193f5eba14e4ed9974b643ae171a64e", 115)]
[TestCase(@"https://github.com/davedf/cuke4ninja.git",
@"47a21ff1463b6ab19dc9d19f9b0e4f3fc24e76e2", 114)]
[TestCase(@"https://github.com/erikzaadi/GithubSharp.git",
@"c13cb166fdbabfe9ff0abbef48da674ecab96b06", 114)]
[TestCase(@"https://github.com/mono/CppSharp.git",
@"678639acdcbc4f7a236be6807f756ca13f5004ac", 114)]
[TestCase(@"https://github.com/MediaPortal/MediaPortal-1.git",
@"3cb09afd39eed139d49dc5794a7b57fa3f5515f7", 113)]
[TestCase(@"https://github.com/rdio/vernacular.git",
@"7e3bb54f6cfcb58a8aae06fc9d09da163a18d244", 112)]
[TestCase(@"https://github.com/stramit/SSE.git",
@"4b5272ed6124aff070a296b9677afa772fe785a7", 112)]
[TestCase(@"https://github.com/PiranhaCMS/Piranha.git",
@"e2eefe938633f00492485f354a519e93a6b3d7b9", 111)]
[TestCase(@"https://github.com/encog/encog-dotnet-core.git",
@"4f168c04cfd85d647f18dca5c7a2a77fff50c1e5", 111)]
[TestCase(@"https://github.com/abbyysdk/ocrsdk.com.git",
@"42cb38989a8fd1203c6c74e9e69d7f380136ab5a", 111)]
[TestCase(@"https://github.com/vvvv/vvvv-sdk.git",
@"98e2795da2c69fac698d53ac891ce3020c933adf", 111)]
[TestCase(@"https://github.com/umeng/umeng-muti-channel-build-tool.git",
@"c04371642c563330d3447b71da849e352e913469", 110)]
[TestCase(@"https://github.com/webgio/Rotativa.git",
@"4da5482bc8f0aa200a74a47a2bde929f671ebcf1", 110)]
[TestCase(@"https://github.com/adamsmith/DesktopBootstrap.git",
@"e5b06b82d870de66d8d1748102471e5221aac812", 109)]
[TestCase(@"https://github.com/acken/AutoTest.Net.git",
@"4e6bc9fa17726e49479ff79de7c16e67377e4fa7", 109)]
[TestCase(@"https://github.com/castleproject/Windsor.git",
@"5cb67d91b3e651d0c36a3cabae7f8a05e2baa20a", 109)]
[TestCase(@"https://github.com/nwoolls/MultiMiner.git",
@"97d62f93fc74a4b4faf227a9488f8186a49bd3c5", 108)]
[TestCase(@"https://github.com/SirCmpwn/RedditSharp.git",
@"c73acbc360274093fba3ac84f39d8392dba2b939", 108)]
[TestCase(@"https://github.com/thelinuxlich/artemis_CSharp.git",
@"c45be88dc8695df6add5a041559f9e3c1a7c3269", 108)]
[TestCase(@"https://github.com/MiniProfiler/dotnet.git",
@"a13e4f57d08c5ee5c5e060819f5b6cfc789e9005", 108)]
[TestCase(@"https://github.com/jskeet/dotnet-protobufs.git",
@"4f2a7dd0d910b4cfa1e2421905b68bb51b8bcc8b", 107)]
[TestCase(@"https://github.com/prime31/P31UnityAddOns.git",
@"0d05d5c5c61a7165bc7815e2f55fb4b88b415061", 107)]
[TestCase(@"https://github.com/MarimerLLC/csla.git",
@"c1a6a7514c632d4cf228e28037657cec98c3aeeb", 107)]
[TestCase(@"https://github.com/gluck/il-repack.git",
@"2ada51b37f79e68fc9d0ae3ec64d64538875a7e9", 107)]
[TestCase(@"https://github.com/ayende/rhino-licensing.git",
@"55960afd4c6380a727687a7ebb74bdf4a267caac", 107)]
[TestCase(@"https://github.com/opendns/dnscrypt-win-client.git",
@"1f5ba4d366955eb5970eca3a8365f8435253acf5", 107)]
[TestCase(@"https://github.com/castleproject/Castle.ActiveRecord-READONLY.git",
@"a8c3887eef8582a71360fefc1557b7e06124288a", 106)]
[TestCase(@"https://github.com/appharbor/AppHarbor.Web.Security.git",
@"923e33c5c8d8d57442b331a116acc8dacd43b22d", 106)]
[TestCase(@"https://github.com/marklagendijk/WinLess.git",
@"cf56353990c394ab1902cacfc4c8a9c029d457c7", 106)]
[TestCase(@"https://github.com/alexanderbeletsky/elmah-mvc.git",
@"91ab4c9a0af3a62b0b83dad7a3a66294a8d7f9dc", 106)]
[TestCase(@"https://github.com/ayende/rhino-security.git",
@"1a4df0a9a41ce1dc2af685357612e69415e6e11e", 105)]
[TestCase(@"https://github.com/schotime/NPoco.git",
@"10947f3781a707c221bfdbaabeba332a9802078a", 105)]
[TestCase(@"https://github.com/lzybkr/PSReadLine.git",
@"2d74f3e6e2f9e1344f6244c4fa3bd04bef3f60c3", 105)]
[TestCase(@"https://github.com/maartenba/GoogleAnalyticsTracker.git",
@"90aab23b09db8a81cee9bbf1d9e7daf606f64884", 105)]
[TestCase(@"https://github.com/flibitijibibo/SDL2-CS.git",
@"e8731efadb249a40f46d646e2b783ec588326ea6", 105)]
[TestCase(@"https://github.com/Code52/Ideastrike.git",
@"4c2cf27072ec826423f31fa0fe7bf37a2df55fd5", 104)]
[TestCase(@"https://github.com/ermau/Instant.git",
@"33ea5be884fa54dfaf62957c2c83edc831592f10", 104)]
[TestCase(@"https://github.com/charlesw/tesseract.git",
@"83134050c33636cd853c45617514175dde6d6e27", 104)]
[TestCase(@"https://github.com/flagbug/YoutubeExtractor.git",
@"fb3ddd538dc3c90df91f0e3b80e6bb67fd09728e", 103)]
[TestCase(@"https://github.com/marek-stoj/NReadability.git",
@"8b1985c752e27afb95b1db176793835497f94bee", 103)]
[TestCase(@"https://github.com/pruiz/WkHtmlToXSharp.git",
@"2a47d8ae4ecbc9ffaab09f4e3f61ae754b151b1d", 103)]
[TestCase(@"https://github.com/aliostad/CacheCow.git",
@"e4545916fd297e5fe520ba0a91f4d822a706fe25", 102)]
[TestCase(@"https://github.com/sawilde/partcover.net4.git",
@"252d57ecefd4a1f997731ead08a5eda66d3ce1a4", 102)]
[TestCase(@"https://github.com/bittercoder/DevDefined.OAuth.git",
@"fd66c506f1eca44881d53a8fa59bff2bf692a91a", 102)]
[TestCase(@"https://github.com/PureKrome/RavenOverflow.git",
@"2e91b036b0da1f30cfaf27aab5c98dfed5ce3b39", 101)]
[TestCase(@"https://github.com/Redth/ZXing.Net.Mobile.git",
@"03704a51db908237035526a81c9bc1c3ded55648", 101)]
[TestCase(@"https://github.com/MSayfullin/FluentStrings.git",
@"d6ab7cef7cfe4dd905ba17f5a1c48bc19ba3bcac", 101)]
[TestCase(@"https://github.com/endjin/Templify.git",
@"3a101e0c3350fafec51f4c920b3aa7ee9f2d81c6", 101)]
[TestCase(@"https://github.com/Majiir/Kethane.git",
@"1aab1ced7e393169cee63587f41b78961867bfe9", 101)]
[TestCase(@"https://github.com/danielwertheim/SisoDb-Provider.git",
@"1c6c57ca27e6b705e297314a5aad7e9013b2c899", 100)]
[TestCase(@"https://github.com/mono/gtk-sharp.git",
@"a74534e835131e778a59aa1897333e8c4abeda51", 100)]
[TestCase(@"https://github.com/follesoe/VSMonoTouch.git",
@"744a61ec80b117df8161c23cfe5927b0cb55fbc7", 99)]
[TestCase(@"https://github.com/subsonic/SubSonic-3.0-Templates.git",
@"9be1ceff2ccd9db1cd0307345774acbbf1b92639", 99)]
[TestCase(@"https://github.com/Haacked/RouteMagic.git",
@"704b651d532dd951f4463986fa7c70054f18f8eb", 99)]
[TestCase(@"https://github.com/axefrog/SimpleBrowser.git",
@"eacf150bfda4abc84b119f2b59407ee75081b82a", 99)]
[TestCase(@"https://github.com/castleproject/Castle.Core-READONLY.git",
@"98d32d968ae306c0e7f5a766e3200a89ec7aa655", 98)]
[TestCase(@"https://github.com/khyperia/CudaSharp.git",
@"98f5529f3459f15c6e834b1bb19ebffc2757c8ba", 98)]
[TestCase(@"https://github.com/Reactive-Extensions/IL2JS.git",
@"a4570f9c69b6c40d001e7539b952266d67609ca9", 98)]
[TestCase(@"https://github.com/accord-net/framework.git",
@"4f7996ebe7aa4be57af7fc2021e984537b4bc34a", 96)]
[TestCase(@"https://github.com/vsClojure/vsClojure.git",
@"6a165726277d4fadca7fb761106fd3ccae19503b", 96)]
[TestCase(@"https://github.com/paulcbetts/starter-mobile.git",
@"88fc8fa33ebb700d418ee686d0326b692fe09740", 96)]
[TestCase(@"https://github.com/imkira/unity-sysfont.git",
@"0951ef8ccd5e0f5173287b4f49c201ff0c7d2074", 96)]
[TestCase(@"https://github.com/cypherkey/RaspberryPi.Net.git",
@"26bd9a34b63158b7a3dea129f0fde0bf94219ffa", 96)]
[TestCase(@"https://github.com/nmosafi/aspComet.git",
@"beccea517c1b0d4eaf3273d51de8f8b9dd4d998c", 95)]
[TestCase(@"https://github.com/owin/gate.git",
@"1fc1f432c54629e488bf43eecbb3f8d333e9f7f7", 95)]
[TestCase(@"https://github.com/Da-Teach/Questor.git",
@"f1ac1f480469dbf26820fa72e10319380bb45ed9", 95)]
[TestCase(@"https://github.com/sayedihashimi/slow-cheetah.git",
@"11cacf8f6a1bc95d0112dc0ffe91597aa9d7b9e0", 95)]
[TestCase(@"https://github.com/DeathCradle/Terraria-s-Dedicated-Server-Mod.git",
@"c2e49a87804caaceaefce2fdea730272607ec6a9", 94)]
[TestCase(@"https://github.com/madskristensen/WebEssentials2012.git",
@"5b1c3884ff26a956f2dfa237411d3244354608b0", 94)]
[TestCase(@"https://github.com/apache/log4net.git",
@"84a6c6c2af369ee525effc4e6f3262b08a82459b", 94)]
[TestCase(@"https://github.com/apaka/win-sshfs.git",
@"750123c43065582fb79e504f89e4ee6c25dd03b6", 94)]
[TestCase(@"https://github.com/magicdict/MagicMongoDBTool.git",
@"42c9c41ba3dccba5648a7922507152ac1b7741d4", 93)]
[TestCase(@"https://github.com/epicvrvs/LibOfLegends.git",
@"2ab6911a627fe57b60804ee851774383809e0a57", 93)]
[TestCase(@"https://github.com/paulcbetts/ModernHttpClient.git",
@"01a0d7cd91f9bd250dd347d57257e81d24ca7c2a", 93)]
[TestCase(@"https://github.com/tathamoddie/System.IO.Abstractions.git",
@"b23859d6e9cfb4270b7b950926fcedbbdf3c94ab", 93)]
[TestCase(@"https://github.com/StackExchange/StackExchange.Redis.git",
@"04e837dd7d3b99666c6ffb59486ca27da752e93b", 93)]
[TestCase(@"https://github.com/jaquadro/NBTExplorer.git",
@"d3e53ac55980424b62761e05d72a71aec0c87dcb", 93)]
[TestCase(@"https://github.com/jagregory/docu.git",
@"e06d22b47e1b7156b6d710b2c461cae68eb742e9", 93)]
[TestCase(@"https://github.com/prime31/CharacterController2D.git",
@"0cc14e5dafcba1cce80b456b12e16a6f81dffbc3", 93)]
[TestCase(@"https://github.com/Ninputer/VBF.git",
@"b1bf6fa8b0a10770d6b404c6ded0a6b0853bc3d7", 93)]
[TestCase(@"https://github.com/aaubry/YamlDotNet.git",
@"b2abe201803d37685c6c43fb272e79729cde6b04", 92)]
[TestCase(@"https://github.com/DynamoDS/Dynamo.git",
@"6d815b6803f478f147cdf2dc1a39725518efbd23", 91)]
[TestCase(@"https://github.com/vannatech/blade.git",
@"87d5262a1eed295c56c16363d2655fbb2d353398", 90)]
[TestCase(@"https://github.com/mono/mono-tools.git",
@"d858f5f27fa8b10d734ccce7ffba631b995093e5", 90)]
[TestCase(@"https://github.com/jfromaniello/Anna.git",
@"fe5a73852ddac3e970ecd8f160b64b0bb6012954", 90)]
[TestCase(@"https://github.com/fholm/unityassets.git",
@"93a6cb1ead1abbc6b3399d5eb0d2249f11d1e557", 90)]
[TestCase(@"https://github.com/dnauck/Portable.Licensing.git",
@"613f90a75d9872f79836cc6a18618f70f02d028c", 90)]
[TestCase(@"https://github.com/foretagsplatsen/Divan.git",
@"3fa7f963fbca26cbd8526bf6b4221c41f1b73512", 89)]
[TestCase(@"https://github.com/castleproject/Core.git",
@"18239dfd5ed3a43e53c82fc1355c03c7ff2197b2", 89)]
[TestCase(@"https://github.com/config-r/config-r.git",
@"664a7ed96d7bb266d4151bd32c3cabeeac74cbc7", 89)]
[TestCase(@"https://github.com/ekonbenefits/impromptu-interface.git",
@"c669ccb469e478a739007415d31f9b5efd1a7bb8", 89)]
[TestCase(@"https://github.com/davybrion/NHibernateWorkshop.git",
@"29c42df056774a92ef71d0aeeb0ded2db4c8e1ae", 88)]
[TestCase(@"https://github.com/MediaPortal/MediaPortal-2.git",
@"34208574764458964fce730c1e7f558059b9e08b", 88)]
[TestCase(@"https://github.com/prime31/TouchKit.git",
@"a3bc0b4f215e3c00600d9feda4112ed2707c4086", 88)]
[TestCase(@"https://github.com/JetBrains/resharper-nuget.git",
@"8d8b65d82d6999288657d3251db5c9f4da91088d", 88)]
[TestCase(@"https://github.com/couchbase/couchbase-net-client.git",
@"dc0d487aab381c2ecec441f915d3658b57277b0d", 88)]
[TestCase(@"https://github.com/mhinze/ShortBus.git",
@"1c665b1d3d4d580d4e7cf5f309346bacc492ab8e", 88)]
[TestCase(@"https://github.com/jgranick/md-haxebinding.git",
@"cec05b4e2277f7e43ebb71ab9e2717edf176107e", 87)]
[TestCase(@"https://github.com/rackerlabs/csharp-cloudfiles.git",
@"0880fb3dc31eb56780718b6da6ae29ce01042734", 87)]
[TestCase(@"https://github.com/jediwhale/fitsharp.git",
@"0fed6d9257f0f7fd1197b08c8f5ab9746108e5ca", 87)]
[TestCase(@"https://github.com/benjojo/Countdown.git",
@"70eefb9341bcb3eb9a07598b13de590a4c5d04ef", 87)]
[TestCase(@"https://github.com/mikehadlow/AsmSpy.git",
@"0c99bcdec2f6c8ab78536509daa35db06cdbd2a0", 87)]
[TestCase(@"https://github.com/MediaBrowser/MediaBrowser.Theater.git",
@"ad38c3807d73cb34d1965ad36e8dc9eb34fe2c71", 86)]
[TestCase(@"https://github.com/ouya/ouya-unity-plugin.git",
@"477b0bba331ad2d4b92f7488cadd2af4037f5e5c", 86)]
[TestCase(@"https://github.com/jonwagner/Insight.Database.git",
@"36eb6153c395e792a991af6160330f432d7deab4", 86)]
[TestCase(@"https://github.com/MefContrib/MefContrib.git",
@"8ad5b6fa3c3ce61341e121d5de754ac1f2447228", 86)]
[TestCase(@"https://github.com/codereflection/Giles.git",
@"42f89af6ae0e1d61bbb6dbfeb5b01b22c79c3436", 86)]
[TestCase(@"https://github.com/xamarin/Xamarin.Auth.git",
@"9074e3c7e5f95306922d4e58efb3b3cb2afd674e", 86)]
[TestCase(@"https://github.com/FTPbox/FTPbox.git",
@"7c9466559954823f2da914d6e791563c03316d0a", 85)]
[TestCase(@"https://github.com/techtalk/SpecFlow-Examples.git",
@"55ba323210a3bd3107078be65dc22c7e358da739", 85)]
[TestCase(@"https://github.com/KeenSoftwareHouse/Miner-Wars-2081.git",
@"c5da0cfe54cf41152cf4bfcc84415187e17a09ec", 85)]
[TestCase(@"https://github.com/mongodb/mongo-azure.git",
@"81181ef06322932b19b38ce5fbba9598b06e9abf", 85)]
[TestCase(@"https://github.com/krispykrem/Infiniminer.git",
@"d9be05ffc5b4f554a84bc77fa0cf3d6f8d671d99", 84)]
[TestCase(@"https://github.com/linq2db/linq2db.git",
@"d9f697717651825a5ebf4dc4fe7de97dc9307e22", 84)]
[TestCase(@"https://github.com/ploeh/Hyprlinkr.git",
@"12d8998b2d27881141affb75925eb1e499b035e3", 84)]
[TestCase(@"https://github.com/praeclarum/CrossGraphics.git",
@"ac5b3dced786c80ea7f1604604aba6edae0f71b5", 84)]
[TestCase(@"https://github.com/edumbill/doap.git",
@"12465bcc188fabdd47ada6381d2d365bc97222e7", 83)]
[TestCase(@"https://github.com/dillenmeister/Trello.NET.git",
@"d95041915a5dbe841ba8f872ec6d03685cca25fc", 83)]
[TestCase(@"https://github.com/SharpRepository/SharpRepository.git",
@"332f4881ab8bfd0f2f85b1b9bbf8c74d0ccb68c8", 82)]
[TestCase(@"https://github.com/chraft/c-raft.git",
@"bfe8f27251329c4b68d7f054ad21710c468b79e5", 82)]
[TestCase(@"https://github.com/sebastienros/yessql.git",
@"3c47e0fbb1633175d55bfa1d74d3c1f906d50fff", 82)]
[TestCase(@"https://github.com/cplotts/snoopwpf.git",
@"8db16d06f74861aebfc8c2f4abd6addfae00cef5", 82)]
[TestCase(@"https://github.com/mephraim/ghostscriptsharp.git",
@"7bd1bcba2f3f3ccb311620ddd97a368e768c7f6e", 82)]
[TestCase(@"https://github.com/benfoster/Fabrik.Common.git",
@"bb364373865ccae7187514dfdde33bdcc893b130", 82)]
[TestCase(@"https://github.com/richardlawrence/Cuke4Nuke.git",
@"ddec8b87af32b981768a2cf2aaf5ba8c1cd5c251", 81)]
[TestCase(@"https://github.com/aurora-sim/Aurora-Sim.git",
@"033f3380f860494dff74b661c0ee4e4a3897a2b2", 81)]
[TestCase(@"https://github.com/tgjones/gemini.git",
@"078dd03f7f78bed853815050060d09ffe103f112", 81)]
[TestCase(@"https://github.com/ServiceStackV3/ServiceStack.RedisWebServices.git",
@"9cf4a2ece781c1acb04d2ea76a6e22f207d3c730", 81)]
[TestCase(@"https://github.com/shellscape/Gmail-Notifier-Plus.git",
@"313eb18176b777155c1496593415edaa4e378d4d", 80)]
[TestCase(@"https://github.com/yysun/Git-Web-Access.git",
@"3d2037bc809873ce494763654fdafbb9d764e3cb", 80)]
[TestCase(@"https://github.com/FlorianRappl/AngleSharp.git",
@"0d44e197fea0fbc948f8dd5a2317635f60ae2360", 80)]
[TestCase(@"https://github.com/ChrisMissal/Formo.git",
@"ca21fdb584bd9acb4da4d255d19a231b83efb820", 80)]
[TestCase(@"https://github.com/DEVSENSE/Phalanger.git",
@"72101d5871e2d352d1ea78ee917fd071a0adb209", 80)]
[TestCase(@"https://github.com/Fody/PropertyChanged.git",
@"f8a93a733e9a0c54fc57b30b4dab4298d2d302d9", 80)]
[TestCase(@"https://github.com/RobertKozak/MonoMobile.Views.git",
@"17b7195e17646c870c3ea5522bb35d61a04da9c2", 79)]
[TestCase(@"https://github.com/raistlinthewiz/voxeliq.git",
@"37420efad272f77a8a5f6f590c7e55c3782953e1", 79)]
[TestCase(@"https://github.com/adamabdelhamed/PowerArgs.git",
@"3ae89c6d3c79b834d80c1a604f46e535cb30159e", 79)]
[TestCase(@"https://github.com/abergs/RegExpBuilder.git",
@"b1b977eeaab25465f0530cf99efc21d514febd95", 79)]
[TestCase(@"https://github.com/TylerBrinks/Snap.git",
@"f65709f73378430ead644364234a7eea5c29e90b", 79)]
[TestCase(@"https://github.com/sendgrid/sendgrid-csharp.git",
@"ddbdf03600227f4570af96a98ffd67d33d8b9743", 79)]
[TestCase(@"https://github.com/refractalize/bounce.git",
@"15bce6548fb009ff8cd9578ec8edd1a658bcc75e", 79)]
[TestCase(@"https://github.com/luckyrat/KeeFox.git",
@"55fcf2c4737430f6e5c53120d374356ed845a87e", 78)]
[TestCase(@"https://github.com/cairoshell/cairoshell.git",
@"36de406a00e9b6a8907ba088033f309c81ba096b", 78)]
[TestCase(@"https://github.com/milkshakesoftware/PreMailer.Net.git",
@"8c922cbfa6eb68aaa6924877b11f50ec51f9952b", 78)]
[TestCase(@"https://github.com/github/GitPad.git",
@"0e8ff3add801a2eff67bf3390bbd5c51a493eff5", 77)]
[TestCase(@"https://github.com/davidebbo/WebActivator.git",
@"9f5f109dfdfa5a1e5a6ab9ebc5da15a0f2af62ac", 77)]
[TestCase(@"https://github.com/ayende/Alexandria.git",
@"9eafd571079d3f39e140cf8092d8e424d641d759", 77)]
[TestCase(@"https://github.com/perezdidac/WhatsAPINet.git",
@"0620c240e6c2a44798a68dfe756c32245099a000", 77)]
[TestCase(@"https://github.com/sqzhuyi/ExportBlog.git",
@"c7d5858e4503ee615b15a76937d79ee932dbc20f", 77)]
[TestCase(@"https://github.com/facebook-csharp-sdk/simple-json.git",
@"f739f0b2924bcfa33204e86b8b73aa98be68abac", 77)]
[TestCase(@"https://github.com/TrinityCore/WowPacketParser.git",
@"bdf0d0155bd76105b52631e58e2ca106202d8e8a", 77)]
[TestCase(@"https://github.com/jgauffin/griffin.mvccontrib.git",
@"ce3e23d69273166c25c808e1f6a27c279f8c47e2", 76)]
[TestCase(@"https://github.com/quarnster/CompleteSharp.git",
@"ad3c124a7a2861c333700f66539decfd04dcf08c", 76)]
[TestCase(@"https://github.com/migueldeicaza/redis-sharp.git",
@"56533c66fc4a86f434319dbae06de55d5e594b6f", 76)]
[TestCase(@"https://github.com/freshlogic/MongoDB.Web.git",
@"c59f2e845daa9a4a05af14c40a8ce1baf81eae17", 76)]
[TestCase(@"https://github.com/xamarin/XamarinStripe.git",
@"817feed3b067ca185f1a9585336df6a1b20ee77b", 76)]
[TestCase(@"https://github.com/davybrion/Agatha.git",
@"16f7762bdd011366591f5cfe1833799edf6dd8d9", 75)]
[TestCase(@"https://github.com/mono/moon.git",
@"cb343939d3f5731d8c1509beb90c051c63a83903", 75)]
[TestCase(@"https://github.com/TestStack/TestStack.Seleno.git",
@"22fa7fdb52f7ef8e723f850bb30a40c5e5de5514", 75)]
[TestCase(@"https://github.com/Trinity-Encore/Encore.git",
@"0538bd611dc1bc81da15c4b10a65ac9d608dafc2", 75)]
[TestCase(@"https://github.com/funnelweblog/FunnelWeb.git",
@"f28d1b1cb9c86e492f120948309de68c12141222", 75)]
[TestCase(@"https://github.com/Nivekk/KOS.git",
@"f87b56f0ec27019798ef2ef85451133dd84e137d", 75)]
[TestCase(@"https://github.com/thedxe/XServer.git",
@"8893be45ad0e15ec44dc16ffa6beb35c5a595e8f", 75)]
[TestCase(@"https://github.com/soitgoes/LoveSeat.git",
@"c0c8dcae805f54db230bd986d0559d5e5e0cc533", 75)]
[TestCase(@"https://github.com/nathanb/iws-snippets.git",
@"9c61dcb702d80e703fbe881a3969209ac081c81c", 75)]
[TestCase(@"https://github.com/jlamfers/RazorMachine.git",
@"d03b6709b37ffbd24e12fe961987ab18e95405df", 75)]
[TestCase(@"https://github.com/Mighty-M/git-bin.git",
@"833387373b15c50c8108492173f9a20d483c9e48", 75)]
[TestCase(@"https://github.com/kerryjiang/SuperWebSocket.git",
@"3ea499be8f3ad20b5e0efddeedf98cee4f905112", 75)]
[TestCase(@"https://github.com/dfinke/powershell-for-developers.git",
@"437aab5821e8de698168f245413d3ad725b40f7f", 75)]
[TestCase(@"https://github.com/chkn/AluminumLua.git",
@"0bc5858306cf78708cb4e369075ae76ddb2bbad5", 75)]
[TestCase(@"https://github.com/imclem/Highcharts-export-module-asp.net.git",
@"3163a4de9ac9797d48588406b0c27715f345103a", 75)]
[TestCase(@"https://github.com/robertcupisz/LightShafts.git",
@"08d49815b9a6a0032e7db74ce05bb38f9d3c57bd", 75)]
[TestCase(@"https://github.com/Cimbalino/Cimbalino-Phone-Toolkit.git",
@"90dc08b59b6cd6cab57783cb820706f9469115a4", 74)]
[TestCase(@"https://github.com/mono/xsp.git",
@"8a31bc625727594d42f94173768bee5cf8afd0a4", 74)]
[TestCase(@"https://github.com/tomasmcguinness/dotnet-passbook.git",
@"b615212b09475f0b103fa5ad0df56c80160c2578", 74)]
[TestCase(@"https://github.com/plioi/fixie.git",
@"72d64527eb529e70c1390f9085d52b3088b064fa", 74)]
[TestCase(@"https://github.com/LogosBible/Logos.Utility.git",
@"dc784e6da62667ed6104387b4a3633fd4637f4f0", 74)]
[TestCase(@"https://github.com/DbUp/DbUp.git",
@"dd2818c58d80aedcec758b02b9f59eec3d6cfbb9", 74)]
[TestCase(@"https://github.com/migratordotnet/Migrator.NET.git",
@"ddf1ad12cd92a5af55c959eb174c0767a2c8b22c", 74)]
[TestCase(@"https://github.com/petmongrels/white.git",
@"168932f9ad10bc2e7ed1c2054daebdf0e9380acd", 73)]
[TestCase(@"https://github.com/twitchtv/sdk-dist.git",
@"3c590c2c0e21c2aa4fed05dd673b106e64a38253", 73)]
[TestCase(@"https://github.com/gregoryyoung/Simple.Testing.git",
@"80e8cb06dc19d6d08c7ee9c48ba4a91c77d0c52a", 73)]
[TestCase(@"https://github.com/andykorth/opentk.git",
@"0345d063f9c5d5ef0fb6cc1eef57f902cfb85990", 73)]
[TestCase(@"https://github.com/shawnmclean/Mandrill-dotnet.git",
@"e88929677bffdc935b45e5678dfbd164465bcbf6", 73)]
[TestCase(@"https://github.com/Coevery/Coevery.git",
@"4e12991f7255907df9470895f6fa82f93755e5f6", 73)]
[TestCase(@"https://github.com/JetBrains/resharper-angularjs.git",
@"510cb59c5d446a7e2645ae3bf15a18467d94b2c6", 73)]
[TestCase(@"https://github.com/joliver/NanoMessageBus.git",
@"ed8e9ed1f2309b0a22c3306a6a9eaf70882942a5", 73)]
[TestCase(@"https://github.com/MindTouch/SGMLReader.git",
@"d6996050ac7f5e86ded69ae6e4a52cf392f02547", 73)]
[TestCase(@"https://github.com/Sebazzz/SDammann.WebApi.Versioning.git",
@"e41769ce22143a9d1110f357d622a89507ba320e", 73)]
[TestCase(@"https://github.com/adevine1618/KinectSDK-Unity3D_Interface_Plugin.git",
@"160ceb6a494dbcc0853c32894967d388379de33d", 73)]
[TestCase(@"https://github.com/codebutler/synapse.git",
@"33a1b7d509734ddd6c13a1b51981ae9e89a6140b", 72)]
[TestCase(@"https://github.com/karno/StarryEyes.git",
@"f79ed3006a36a39e22ebf6d6be7c6c6d7ab82361", 72)]
[TestCase(@"https://github.com/trydis/FIFA-Ultimate-Team-2014-Toolkit.git",
@"f6b55bbed2fa78720a8f4c620bdaa9ed07b5b21f", 72)]
[TestCase(@"https://github.com/ninject/ninject.extensions.wcf.git",
@"7de572e6d78d7fc3be3987e7289997da89170406", 72)]
[TestCase(@"https://github.com/MarcosMeli/FileHelpers.git",
@"21800feb6891ccc052e96db3fabceda45a4dc2ba", 72)]
[TestCase(@"https://github.com/Readify/GitViz.git",
@"9e72a85608dee453c2f8c1e04fea71ab5bfff638", 71)]