-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput
9014 lines (8975 loc) · 420 KB
/
output
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
remote: Total 13 (delta 0), reused 0 (delta 0), pack-reused 13
Unpacking objects: 100% (13/13), done.
Found match
Skipped
Found match
Skipped
Found match
CR
https://github.com/Dlng/CR.git
git clone https://github.com/Dlng/CR.git D:\Projects\gitscraper\resources\outputCode\Julia\CR
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\CR'...
remote: Enumerating objects: 398, done.
Receiving objects: 85% (339/398), 18.87 MiB | 37.73 MiB/s 398 eceiving objects: 79% (315/398), 18.87 MiB | 37.73 MiB/s
Receiving objects: 100% (398/398), 19.14 MiB | 37.73 MiB/s, done.
Resolving deltas: 100% (187/187), done.
Found match
Skipped
Found match
go.jl
https://github.com/dmrd/go.jl.git
git clone https://github.com/dmrd/go.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\go.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\go.jl'...
remote: Enumerating objects: 324, done.
Receiving objects: 80% (260/324) 0 (delta 0), pack-reused 324
Receiving objects: 100% (324/324), 61.45 KiB | 0 bytes/s, done.
Resolving deltas: 100% (182/182), done.
Found match
keras.jl
https://github.com/dmrd/keras.jl.git
git clone https://github.com/dmrd/keras.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\keras.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\keras.jl'...
remote: Enumerating objects: 22, done.
remote: Total 22 (delta 0), reused 0 (delta 0), pack-reused 22
Unpacking objects: 100% (22/22), done.
Found match
cg.jl
https://github.com/dmrd/cg.jl.git
git clone https://github.com/dmrd/cg.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\cg.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\cg.jl'...
remote: Enumerating objects: 283, done.
remote: Counting objects: 100% (3/3), done.
Receiving objects: 81%a 2), reused 2 (delta 2), pack-reused 280 eceiving objects: 80% (227/283)
Receiving objects: 100% (283/283), 257.21 KiB | 0 bytes/s, done.
Resolving deltas: 100% (142/142), done.
Found match
vision.jl
https://github.com/dmrd/vision.jl.git
git clone https://github.com/dmrd/vision.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\vision.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\vision.jl'...
remote: Enumerating objects: 32, done.
remote: Total 32 (delta 0), reused 0 (delta 0), pack-reused 32
Unpacking objects: 100% (32/32), done.
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
euljulua
https://github.com/Doik/euljulua.git
git clone https://github.com/Doik/euljulua.git D:\Projects\gitscraper\resources\outputCode\Julia\euljulua
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\euljulua'...
remote: Enumerating objects: 32, done.
remote: Total 32 (delta 0), reused 0 (delta 0), pack-reused 32
Unpacking objects: 100% (32/32), done.
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
srLHE
https://github.com/dprn/srLHE.git
git clone https://github.com/dprn/srLHE.git D:\Projects\gitscraper\resources\outputCode\Julia\srLHE
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\srLHE'...
remote: Enumerating objects: 48, done.
remote: Counting objects: 100% (48/48), done.
remote: Compressing objects: 100% (36/36), done.
remote: Total 48 (delta 17), reused 37 (delta 10), pack-reused 0
Unpacking objects: 100% (48/48), done.
Found match
WCvsLHE
https://github.com/dprn/WCvsLHE.git
git clone https://github.com/dprn/WCvsLHE.git D:\Projects\gitscraper\resources\outputCode\Julia\WCvsLHE
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\WCvsLHE'...
remote: Enumerating objects: 108, done.
Receiving objects: 56% (61/108) 0 (delta 0), pack-reused 108 eceiving objects: 55% (60/108)
Receiving objects: 100% (108/108), 55.05 KiB | 0 bytes/s, done.
Resolving deltas: 100% (43/43), done.
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
aoc2020
https://github.com/Drvi/aoc2020.git
git clone https://github.com/Drvi/aoc2020.git D:\Projects\gitscraper\resources\outputCode\Julia\aoc2020
fatal: destination path 'D:\Projects\gitscraper\resources\outputCode\Julia\aoc2020' already exists and is not an empty directory.
Found match
toy_dla
https://github.com/Drvi/toy_dla.git
git clone https://github.com/Drvi/toy_dla.git D:\Projects\gitscraper\resources\outputCode\Julia\toy_dla
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\toy_dla'...
remote: Enumerating objects: 6, done.
remote: Counting objects: 100% (6/6), done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 6 (delta 0), reused 6 (delta 0), pack-reused 0
Unpacking objects: 100% (6/6), done.
Found match
Selections.jl
https://github.com/Drvi/Selections.jl.git
git clone https://github.com/Drvi/Selections.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\Selections.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\Selections.jl'...
remote: Enumerating objects: 170, done.
remote: Counting objects: 100% (85/85), done.
remote: Compressing objects: 100% (54/54), done.
Receiving objects: 80% (136/170) 65 (delta 30), pack-reused 85 eceiving objects: 78% (133/170)
Receiving objects: 100% (170/170), 74.08 KiB | 0 bytes/s, done.
Resolving deltas: 100% (81/81), done.
Found match
PreprocessingRecipes.jl
https://github.com/Drvi/PreprocessingRecipes.jl.git
git clone https://github.com/Drvi/PreprocessingRecipes.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\PreprocessingRecipes.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\PreprocessingRecipes.jl'...
remote: Enumerating objects: 121, done.
remote: Total 121 (delta 0), reused 0 (delta 0), pack-reused 121
Receiving objects: 100% (121/121), 24.54 KiB | 0 bytes/s, done.
Resolving deltas: 100% (79/79), done.
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
RestClient.jl
https://github.com/dwil/RestClient.jl.git
git clone https://github.com/dwil/RestClient.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\RestClient.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\RestClient.jl'...
remote: Enumerating objects: 38, done.
remote: Total 38 (delta 0), reused 0 (delta 0), pack-reused 38
Unpacking objects: 100% (38/38), done.
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
cellmeans_julia
https://github.com/egmr/cellmeans_julia.git
git clone https://github.com/egmr/cellmeans_julia.git D:\Projects\gitscraper\resources\outputCode\Julia\cellmeans_julia
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\cellmeans_julia'...
remote: Enumerating objects: 8, done.
remote: Total 8 (delta 0), reused 0 (delta 0), pack-reused 8
Unpacking objects: 100% (8/8), done.
Found match
Skipped
Found match
hello-julia
https://github.com/eiba/hello-julia.git
git clone https://github.com/eiba/hello-julia.git D:\Projects\gitscraper\resources\outputCode\Julia\hello-julia
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\hello-julia'...
remote: Enumerating objects: 140, done.
remote: Counting objects: 100% (140/140), done.
remote: Compressing objects: 100% (69/69), done.
Recete: Total 140 (delta 41), reused 136 (delta 40), pack-reused 0 eceiving objects: 36% (51/140)
Receiving objects: 100% (140/140), 17.64 KiB | 0 bytes/s, done.
Resolving deltas: 100% (41/41), done.
Found match
GoogleSheetsCSVExporter.jl
https://github.com/eiel/GoogleSheetsCSVExporter.jl.git
git clone https://github.com/eiel/GoogleSheetsCSVExporter.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\GoogleSheetsCSVExporter.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\GoogleSheetsCSVExporter.jl'...
remote: Enumerating objects: 56, done.
remote: Total 56 (delta 0), reused 0 (delta 0), pack-reused 56
Unpacking objects: 100% (56/56), done.
Found match
EasyFITS.jl
https://github.com/emmt/EasyFITS.jl.git
git clone https://github.com/emmt/EasyFITS.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\EasyFITS.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\EasyFITS.jl'...
remote: Enumerating objects: 325, done.
remote: Counting objects: 100% (325/325), done.
remote: Compressing objects: 100% (175/175), done.
Receiving objects: 90% (293/325) ed 278 (delta 124), pack-reused 0
Receiving objects: 100% (325/325), 85.71 KiB | 0 bytes/s, done.
Resolving deltas: 100% (169/169), done.
Found match
LazyAlgebra.jl
https://github.com/emmt/LazyAlgebra.jl.git
git clone https://github.com/emmt/LazyAlgebra.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\LazyAlgebra.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\LazyAlgebra.jl'...
remote: Enumerating objects: 3040, done.
remote: Counting objects: 100% (910/910), done.
remote: Compressing objects: 100% (450/450), done.
remote: Total 3040 (delta 566), reused 684 (delta 354), pack-reused 2130
Receiving objects: 100% (3040/3040), 1015.78 KiB | 0 bytes/s, done.
Resolving deltas: 100% (2049/2049), done.
Found match
ConjugateGradient.jl
https://github.com/emmt/ConjugateGradient.jl.git
git clone https://github.com/emmt/ConjugateGradient.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\ConjugateGradient.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\ConjugateGradient.jl'...
remote: Enumerating objects: 37, done.
remote: Counting objects: 100% (37/37), done.
remote: Compressing objects: 100% (20/20), done.
remote: Total 37 (delta 11), reused 36 (delta 10), pack-reused 0
Unpacking objects: 100% (37/37), done.
Found match
Unwrapping.jl
https://github.com/emmt/Unwrapping.jl.git
git clone https://github.com/emmt/Unwrapping.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\Unwrapping.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\Unwrapping.jl'...
remote: Enumerating objects: 66, done.
remote: Counting objects: 100% (66/66), done.
remote: Compressing objects: 100% (33/33), done.
remote: Total 66 (delta 27), reused 60 (delta 21), pack-reused 0
Unpacking objects: 100% (66/66), done.
Found match
Alpao.jl
https://github.com/emmt/Alpao.jl.git
git clone https://github.com/emmt/Alpao.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\Alpao.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\Alpao.jl'...
remote: Enumerating objects: 166, done.
remote: Counting objects: 100% (56/56), done.
remote: Compressing objects: 100% (35/35), done.
Receiving objects: 90% (150/166) 44 (delta 16), pack-reused 110
Receiving objects: 100% (166/166), 33.41 KiB | 0 bytes/s, done.
Resolving deltas: 100% (72/72), done.
Found match
LinearInterpolators.jl
https://github.com/emmt/LinearInterpolators.jl.git
git clone https://github.com/emmt/LinearInterpolators.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\LinearInterpolators.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\LinearInterpolators.jl'...
remote: Enumerating objects: 934, done.
remote: Counting objects: 100% (155/155), done.
remote: Compressing objects: 100% (73/73), done.
remote: Total 934 (delta 89), reused 132 (delta 81), pack-reused 779 eceiving objects: 99% (925/934)
Receiving objects: 100% (934/934), 224.17 KiB | 0 bytes/s, done.
Resolving deltas: 100% (625/625), done.
Found match
TwoDimensional.jl
https://github.com/emmt/TwoDimensional.jl.git
git clone https://github.com/emmt/TwoDimensional.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\TwoDimensional.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\TwoDimensional.jl'...
remote: Enumerating objects: 940, done.
Receiving objects: 91% (856/940) 0 (delta 0), pack-reused 940 eceiving objects: 90% (846/940)
Receiving objects: 100% (940/940), 275.25 KiB | 0 bytes/s, done.
Resolving deltas: 100% (439/439), done.
Found match
PointSpreadFunctions.jl
https://github.com/emmt/PointSpreadFunctions.jl.git
git clone https://github.com/emmt/PointSpreadFunctions.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\PointSpreadFunctions.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\PointSpreadFunctions.jl'...
remote: Enumerating objects: 293, done.
remote: Counting objects: 100% (293/293), done.
remote: Compressing objects: 100% (145/145), done.
Receiving objects: 77% (238), reused 269 (delta 114), pack-reused 0 eceiving objects: 76% (223/293)
Receiving objects: 100% (293/293), 139.32 KiB | 0 bytes/s, done.
Resolving deltas: 100% (138/138), done.
Found match
YPlot.jl
https://github.com/emmt/YPlot.jl.git
git clone https://github.com/emmt/YPlot.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\YPlot.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\YPlot.jl'...
remote: Enumerating objects: 66, done.
remote: Total 66 (delta 0), reused 0 (delta 0), pack-reused 66
Unpacking objects: 100% (66/66), done.
Found match
InterpolationKernels.jl
https://github.com/emmt/InterpolationKernels.jl.git
git clone https://github.com/emmt/InterpolationKernels.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\InterpolationKernels.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\InterpolationKernels.jl'...
remote: Enumerating objects: 848, done.
remote: Counting objects: 100% (492/492), done.
remote: Compressing objects: 100% (181/181), done.
remote: Total 848 (delta 238), reused 425 (delta 183), pack-reused 356 eceiving objects: 98% (832/848)
Receiving objects: 100% (848/848), 370.15 KiB | 0 bytes/s, done.
Resolving deltas: 100% (361/361), done.
Found match
InterProcessCommunication.jl
https://github.com/emmt/InterProcessCommunication.jl.git
git clone https://github.com/emmt/InterProcessCommunication.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\InterProcessCommunication.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\InterProcessCommunication.jl'...
remote: Enumerating objects: 1003, done.
remote: Counting objects: 100% (1003/1003), done.
remote: Compressing objects: 100% (364/364), done.
Receiving objects: 96% (963/1003) reused 947 (delta 547), pack-reused 0ving objects: 95% (953/1003)
Receiving objects: 100% (1003/1003), 360.41 KiB | 0 bytes/s, done.
Resolving deltas: 100% (597/597), done.
Found match
ZippedArrays.jl
https://github.com/emmt/ZippedArrays.jl.git
git clone https://github.com/emmt/ZippedArrays.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\ZippedArrays.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\ZippedArrays.jl'...
remote: Enumerating objects: 83, done.
remote: Counting objects: 100% (83/83), done.
remote: Compressing objects: 100% (48/48), done.
remote: Total 83 (delta 35), reused 69 (delta 23), pack-reused 0
Unpacking objects: 100% (83/83), done.
Found match
TestPackage2.jl
https://github.com/emmt/TestPackage2.jl.git
git clone https://github.com/emmt/TestPackage2.jl.git D:\Projects\gitscraper\resources\outputCode\Julia\TestPackage2.jl
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Julia\TestPackage2.jl'...
Fatal: HttpRequestException encountered.
git: 'credential-cache' is not a git command. See 'git --help'.
Username for 'https://github.com': compiler
Password for 'https://github.com': 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
Password for 'https://github.com': ghp_iX6uU8NyuUKcVdFhfxkOWpSTakTnlQ2sG0o
Password for 'https://github.com': ghp_iX6uU8NyuUKcVdFhfxkOWpSTakTlnQ2sG0eo
Password for 'https://github.com': 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
Password for 'https://[email protected]': ghiXU8yUKcdFOpaTQsG0eo
Password for 'https://[email protected]': giU8yUKcdFOpaTQ2sG
Password for 'https://github.com':
Password for 'https://[email protected]': p_i6UNyuUKcdFOpaTQ2sG
Password for 'https://[email protected]': pi6UNyuUKcdFOpaTQ2sG
Password for 'https://[email protected]': ghiX6U8yUKcFOpaTQ2sG
Password for 'https://[email protected]': ghp_6UNyuUKcdFOpaTQ2sG
g_i6UNyucdFOpSTakTQ2sG
git: 'credential-cache' is not a git command. See 'git --help'.
remote: Repository not found.
fatal: Authentication failed for 'https://github.com/536/Cube.git/'
git: 'credential-cache' is not a git command. See 'git --help'.
remote: Repository not found.
fatal: Authentication failed for 'https://github.com/bXi/bxi-mods.git/'
Found match
ClipBoardMonitor
https://github.com/536/ClipBoardMonitor.git
git clone https://github.com/536/ClipBoardMonitor.git D:\Projects\gitscraper\resources\outputCode\AutoHotkey\ClipBoardMonitor
Cloning into 'D:\Projects\gitscraper\resources\outputCode\AutoHotkey\ClipBoardMonitor'...
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
testlice
https://github.com/bzg/testlice.git
git clone https://github.com/bzg/testlice.git D:\Projects\gitscraper\resources\outputCode\GNU\testlice
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\testlice'...
Fatal: HttpRequestException encountered.
git: 'credential-cache' is not a git command. See 'git --help'.
Username for 'https://github.com': omlercomler
Password for 'https://[email protected]': gh_X6uUNyuUKcdFOpaTQ2sG
Password for 'https://[email protected]':
Password for 'https://[email protected]': g_X6yUKcfxOWpaTQ2sGremote: Enumerating objects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 3
Unpacking objects: 100% (3/3), done.
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 Found match
org-mode-rr
https://github.com/bzg/org-mode-rr.git
git clone https://github.com/bzg/org-mode-rr.git D:\Projects\gitscraper\resources\outputCode\GNU\org-mode-rr
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\org-mode-rr'...
remote: Enumerating objects: 71, done.
remote: Total 71 (delta 0), reused 0 (delta 0), pack-reused 71
Unpacking objects: 100% (71/71), done.
Found match
Skipped
Found match
ananke
https://github.com/b25/ananke.git
git clone https://github.com/b25/ananke.git D:\Projects\gitscraper\resources\outputCode\GNU\ananke
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\ananke'...
remote: Enumerating objects: 9, done.
remote: Counting objects: 100% (9/9), done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 9 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (9/9), done.
Found match
Skipped
Found match
unity
https://github.com/B3r/unity.git
git clone https://github.com/B3r/unity.git D:\Projects\gitscraper\resources\outputCode\GNU\unity
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\unity'...
remote: Enumerating objects: 4, done.
remote: Total 4 (delta 0), reused 0 (delta 0), pack-reused 4
Unpacking objects: 100% (4/4), done.
Found match
dmr
https://github.com/b4d/dmr.git
git clone https://github.com/b4d/dmr.git D:\Projects\gitscraper\resources\outputCode\GNU\dmr
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\dmr'...
remote: Enumerating objects: 789, done.
remote: Counting objects: 100% (61/61), done.
remote: Compressing objects: 100% (30/30), done.
remote: Total 789 (delta 31), reused 60 (delta 31), pack-reused 728
Receiving objects: 100% (789/789), 24.90 MiB | 0 bytes/s, done.
Resolving deltas: 100% (377/377), done.
Checking out files: 100% (26/26), done.
Found match
Skipped
Found match
nlp-course
https://github.com/b5y/nlp-course.git
git clone https://github.com/b5y/nlp-course.git D:\Projects\gitscraper\resources\outputCode\GNU\nlp-course
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\nlp-course'...
remote: Enumerating objects: 4, done.
remote: Total 4 (delta 0), reused 0 (delta 0), pack-reused 4
Unpacking objects: 100% (4/4), done.
Found match
AutoLog2016
https://github.com/b62/AutoLog2016.git
git clone https://github.com/b62/AutoLog2016.git D:\Projects\gitscraper\resources\outputCode\GNU\AutoLog2016
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\AutoLog2016'...
remote: Enumerating objects: 7, done.
remote: Total 7 (delta 0), reused 0 (delta 0), pack-reused 7
Unpacking objects: 100% (7/7), done.
Found match
DO-B71
https://github.com/b71/DO-B71.git
git clone https://github.com/b71/DO-B71.git D:\Projects\gitscraper\resources\outputCode\GNU\DO-B71
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\DO-B71'...
remote: Enumerating objects: 8, done.
remote: Total 8 (delta 0), reused 0 (delta 0), pack-reused 8
Unpacking objects: 100% (8/8), done.
Found match
b0o
https://github.com/b0o/b0o.git
git clone https://github.com/b0o/b0o.git D:\Projects\gitscraper\resources\outputCode\GNU\b0o
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\b0o'...
remote: Enumerating objects: 19, done.
remote: Counting objects: 100% (19/19), done.
remote: Compressing objects: 100% (18/18), done.
remote: Total 19 (delta 4), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (19/19), done.
Found match
sapp-airdrop
https://github.com/cag/sapp-airdrop.git
git clone https://github.com/cag/sapp-airdrop.git D:\Projects\gitscraper\resources\outputCode\GNU\sapp-airdrop
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\sapp-airdrop'...
remote: Enumerating objects: 5, done.
remote: Counting objects: 100% (5/5), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 5 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (5/5), done.
Found match
realitio-arbitrator
https://github.com/cag/realitio-arbitrator.git
git clone https://github.com/cag/realitio-arbitrator.git D:\Projects\gitscraper\resources\outputCode\GNU\realitio-arbitrator
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\realitio-arbitrator'...
remote: Enumerating objects: 14, done.
remote: Counting objects: 100% (14/14), done.
remote: Compressing objects: 100% (12/12), done.
remote: Total 14 (delta 1), reused 10 (delta 1), pack-reused 0
Unpacking objects: 100% (14/14), done.
Found match
DETTeCT-for-ICS
https://github.com/can/DETTeCT-for-ICS.git
git clone https://github.com/can/DETTeCT-for-ICS.git D:\Projects\gitscraper\resources\outputCode\GNU\DETTeCT-for-ICS
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\DETTeCT-for-ICS'...
remote: Enumerating objects: 38, done.
remote: Counting objects: 100% (38/38), done.
remote: Compressing objects: 100% (37/37), done.
remote: Total 38 (delta 13), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (38/38), done.
Found match
Skipped
Found match
Skipped
Found match
emacs-abbrev-definitions
https://github.com/cb0/emacs-abbrev-definitions.git
git clone https://github.com/cb0/emacs-abbrev-definitions.git D:\Projects\gitscraper\resources\outputCode\GNU\emacs-abbrev-definitions
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\emacs-abbrev-definitions'...
remote: Enumerating objects: 8, done.
remote: Total 8 (delta 0), reused 0 (delta 0), pack-reused 8
Unpacking objects: 100% (8/8), done.
Found match
readme
https://github.com/ccf/readme.git
git clone https://github.com/ccf/readme.git D:\Projects\gitscraper\resources\outputCode\GNU\readme
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\readme'...
remote: Enumerating objects: 13, done.
remote: Total 13 (delta 0), reused 0 (delta 0), pack-reused 13
Unpacking objects: 100% (13/13), done.
Found match
msbuild.delphi.parallel
https://github.com/ccy/msbuild.delphi.parallel.git
git clone https://github.com/ccy/msbuild.delphi.parallel.git D:\Projects\gitscraper\resources\outputCode\GNU\msbuild.delphi.parallel
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\msbuild.delphi.parallel'...
remote: Enumerating objects: 16, done.
remote: Total 16 (delta 0), reused 0 (delta 0), pack-reused 16
Unpacking objects: 100% (16/16), done.
Found match
Skipped
Found match
libbrscandec2
https://github.com/cg3/libbrscandec2.git
git clone https://github.com/cg3/libbrscandec2.git D:\Projects\gitscraper\resources\outputCode\GNU\libbrscandec2
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\libbrscandec2'...
remote: Enumerating objects: 13, done.
remote: Total 13 (delta 0), reused 0 (delta 0), pack-reused 13
Unpacking objects: 100% (13/13), done.
Found match
migrate_remote_civicrm
https://github.com/chx/migrate_remote_civicrm.git
git clone https://github.com/chx/migrate_remote_civicrm.git D:\Projects\gitscraper\resources\outputCode\GNU\migrate_remote_civicrm
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\migrate_remote_civicrm'...
remote: Enumerating objects: 21, done.
remote: Total 21 (delta 0), reused 0 (delta 0), pack-reused 21
Unpacking objects: 100% (21/21), done.
Found match
blifpad
https://github.com/cjg/blifpad.git
git clone https://github.com/cjg/blifpad.git D:\Projects\gitscraper\resources\outputCode\GNU\blifpad
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\blifpad'...
remote: Enumerating objects: 146, done.
remote: Total 146 (delta 0), reused 0 (delta 0), pack-reused 146 eceiving objects: 95% (139/146)
Receiving objects: 100% (146/146), 140.55 KiB | 0 bytes/s, done.
Resolving deltas: 100% (60/60), done.
Checking out files: 100% (113/113), done.
Found match
public
https://github.com/ckg/public.git
git clone https://github.com/ckg/public.git D:\Projects\gitscraper\resources\outputCode\GNU\public
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\public'...
remote: Enumerating objects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 3
Unpacking objects: 100% (3/3), done.
Found match
Skipped
Found match
astronomy_visualization_metadata_exiftool_profile
https://github.com/clr/astronomy_visualization_metadata_exiftool_profile.git
git clone https://github.com/clr/astronomy_visualization_metadata_exiftool_profile.git D:\Projects\gitscraper\resources\outputCode\GNU\astronomy_visualization_metadata_exiftool_profile
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\astronomy_visualization_metadata_exiftool_profile'...
remote: Enumerating objects: 48, done.
remote: Total 48 (delta 0), reused 0 (delta 0), pack-reused 48
Unpacking objects: 100% (48/48), done.
Found match
covidalert-ios
https://github.com/cod/covidalert-ios.git
git clone https://github.com/cod/covidalert-ios.git D:\Projects\gitscraper\resources\outputCode\GNU\covidalert-ios
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\covidalert-ios'...
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 4 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (4/4), done.
Found match
cotrack-android
https://github.com/cod/cotrack-android.git
git clone https://github.com/cod/cotrack-android.git D:\Projects\gitscraper\resources\outputCode\GNU\cotrack-android
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\cotrack-android'...
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
Found match
cotrack-front
https://github.com/cod/cotrack-front.git
git clone https://github.com/cod/cotrack-front.git D:\Projects\gitscraper\resources\outputCode\GNU\cotrack-front
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\cotrack-front'...
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
Found match
cotrack-api
https://github.com/cod/cotrack-api.git
git clone https://github.com/cod/cotrack-api.git D:\Projects\gitscraper\resources\outputCode\GNU\cotrack-api
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\cotrack-api'...
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (4/4), done.
Found match
dockerfiles
https://github.com/cpf/dockerfiles.git
git clone https://github.com/cpf/dockerfiles.git D:\Projects\gitscraper\resources\outputCode\GNU\dockerfiles
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\dockerfiles'...
remote: Enumerating objects: 10, done.
remote: Total 10 (delta 0), reused 0 (delta 0), pack-reused 10
Unpacking objects: 100% (10/10), done.
Found match
fremont-high-school
https://github.com/cpg/fremont-high-school.git
git clone https://github.com/cpg/fremont-high-school.git D:\Projects\gitscraper\resources\outputCode\GNU\fremont-high-school
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\fremont-high-school'...
remote: Enumerating objects: 19, done.
remote: Counting objects: 100% (1/1), done.
remote: Total 19 (delta 0), reused 0 (delta 0), pack-reused 18
Unpacking objects: 100% (19/19), done.
Found match
yasp
https://github.com/cpu/yasp.git
git clone https://github.com/cpu/yasp.git D:\Projects\gitscraper\resources\outputCode\GNU\yasp
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\yasp'...
remote: Enumerating objects: 204, done.
Receiving objects: 90% (184/204) 0 (delta 0), pack-reused 204
Receiving objects: 100% (204/204), 64.38 KiB | 0 bytes/s, done.
Resolving deltas: 100% (82/82), done.
Found match
malibu
https://github.com/cpu/malibu.git
git clone https://github.com/cpu/malibu.git D:\Projects\gitscraper\resources\outputCode\GNU\malibu
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\malibu'...
remote: Enumerating objects: 171, done.
remote: Total 171 (delta 0), reused 0 (delta 0), pack-reused 171 eceiving objects: 99% (170/171)
Receiving objects: 100% (171/171), 415.30 KiB | 0 bytes/s, done.
Resolving deltas: 100% (76/76), done.
Found match
Skipped
Found match
cxms-tools
https://github.com/cqx/cxms-tools.git
git clone https://github.com/cqx/cxms-tools.git D:\Projects\gitscraper\resources\outputCode\GNU\cxms-tools
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\cxms-tools'...
remote: Enumerating objects: 4, done.
remote: Total 4 (delta 0), reused 0 (delta 0), pack-reused 4
Unpacking objects: 100% (4/4), done.
Found match
Skipped
Found match
Skipped
Found match
unisecbarber-plugins
https://github.com/csk/unisecbarber-plugins.git
git clone https://github.com/csk/unisecbarber-plugins.git D:\Projects\gitscraper\resources\outputCode\GNU\unisecbarber-plugins
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\unisecbarber-plugins'...
remote: Enumerating objects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 3
Unpacking objects: 100% (3/3), done.
Found match
gray2snd
https://github.com/csm/gray2snd.git
git clone https://github.com/csm/gray2snd.git D:\Projects\gitscraper\resources\outputCode\GNU\gray2snd
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\gray2snd'...
remote: Enumerating objects: 20, done.
remote: Total 20 (delta 0), reused 0 (delta 0), pack-reused 20
Unpacking objects: 100% (20/20), done.
Found match
Skipped
Found match
SkyNet
https://github.com/ctu/SkyNet.git
git clone https://github.com/ctu/SkyNet.git D:\Projects\gitscraper\resources\outputCode\GNU\SkyNet
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\SkyNet'...
remote: Enumerating objects: 5, done.
remote: Total 5 (delta 0), reused 0 (delta 0), pack-reused 5
Unpacking objects: 100% (5/5), done.
Found match
OpenHTP
https://github.com/CT3/OpenHTP.git
git clone https://github.com/CT3/OpenHTP.git D:\Projects\gitscraper\resources\outputCode\GNU\OpenHTP
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\OpenHTP'...
remote: Enumerating objects: 11, done.
remote: Total 11 (delta 0), reused 0 (delta 0), pack-reused 11
Unpacking objects: 100% (11/11), done.
Found match
Open_RC_Reciever
https://github.com/CT3/Open_RC_Reciever.git
git clone https://github.com/CT3/Open_RC_Reciever.git D:\Projects\gitscraper\resources\outputCode\GNU\Open_RC_Reciever
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\Open_RC_Reciever'...
remote: Enumerating objects: 5, done.
remote: Total 5 (delta 0), reused 0 (delta 0), pack-reused 5
Unpacking objects: 100% (5/5), done.
Found match
Skipped
Found match
fpgatcp
https://github.com/cuu/fpgatcp.git
git clone https://github.com/cuu/fpgatcp.git D:\Projects\gitscraper\resources\outputCode\GNU\fpgatcp
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\fpgatcp'...
remote: Enumerating objects: 10, done.
remote: Total 10 (delta 0), reused 0 (delta 0), pack-reused 10
Unpacking objects: 100% (10/10), done.
Found match
toy-elm
https://github.com/cxj/toy-elm.git
git clone https://github.com/cxj/toy-elm.git D:\Projects\gitscraper\resources\outputCode\GNU\toy-elm
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\toy-elm'...
remote: Enumerating objects: 5, done.
remote: Counting objects: 100% (5/5), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 5 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (5/5), done.
Found match
toy-angular
https://github.com/cxj/toy-angular.git
git clone https://github.com/cxj/toy-angular.git D:\Projects\gitscraper\resources\outputCode\GNU\toy-angular
Cloning into 'D:\Projects\gitscraper\resources\outputCode\GNU\toy-angular'...
Fatal: HttpRequestException encountered.
git: 'credential-cache' is not a git command. See 'git --help'.
Username for 'https://github.com': oilePassword for 'https://github.com':
Password for 'https://[email protected]':
Password for 'https://[email protected]':
git: 'credential-cache' is not a git command. See 'git --help'.
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/GJG/Vefhonnun.git/'
Found match
Skipped
Found match
Skipped
Found match
stargazers
https://github.com/glw/awesome-point-cloud-processing/stargazers.git
git clone https://github.com/glw/awesome-point-cloud-processing/stargazers.git D:\Projects\gitscraper\resources\outputCode\Creative\stargazers
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\stargazers'...
remote: Not Found
fatal: repository 'https://github.com/glw/awesome-point-cloud-processing/stargazers.git/' not found
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
dockerday_spark
https://github.com/gvr/dockerday_spark.git
git clone https://github.com/gvr/dockerday_spark.git D:\Projects\gitscraper\resources\outputCode\Creative\dockerday_spark
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\dockerday_spark'...
remote: Enumerating objects: 19, done.
remote: Total 19 (delta 0), reused 0 (delta 0), pack-reused 19
Unpacking objects: 100% (19/19), done.
Found match
Skipped
Found match
quotes
https://github.com/g4p/quotes.git
git clone https://github.com/g4p/quotes.git D:\Projects\gitscraper\resources\outputCode\Creative\quotes
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\quotes'...
remote: Enumerating objects: 805, done.
Receiving objects: 61% (492/805) 0 (delta 0), pack-reused 805
Receiving objects: 100% (805/805), 101.01 KiB | 0 bytes/s, done.
Resolving deltas: 100% (329/329), done.
Checking out files: 100% (141/141), done.
Found match
Skipped
Found match
spdx-cheat-sheet
https://github.com/hen/spdx-cheat-sheet.git
git clone https://github.com/hen/spdx-cheat-sheet.git D:\Projects\gitscraper\resources\outputCode\Creative\spdx-cheat-sheet
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\spdx-cheat-sheet'...
remote: Enumerating objects: 58, done.
remote: Total 58 (delta 0), reused 0 (delta 0), pack-reused 58
Unpacking objects: 100% (58/58), done.
Found match
hitoyoshi
https://github.com/hfu/hitoyoshi.git
git clone https://github.com/hfu/hitoyoshi.git D:\Projects\gitscraper\resources\outputCode\Creative\hitoyoshi
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\hitoyoshi'...
remote: Enumerating objects: 22, done.
remote: Counting objects: 100% (22/22), done.
remote: Compressing objects: 100% (17/17), done.
remote: Total 22 (delta 4), reused 18 (delta 3), pack-reused 0
Unpacking objects: 100% (22/22), done.
Found match
schneller
https://github.com/hfu/schneller.git
git clone https://github.com/hfu/schneller.git D:\Projects\gitscraper\resources\outputCode\Creative\schneller
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\schneller'...
remote: Enumerating objects: 16, done.
remote: Counting objects: 100% (16/16), done.
remote: Compressing objects: 100% (13/13), done.
remote: Total 16 (delta 3), reused 12 (delta 2), pack-reused 0
Unpacking objects: 100% (16/16), done.
Found match
fujiloc
https://github.com/hfu/fujiloc.git
git clone https://github.com/hfu/fujiloc.git D:\Projects\gitscraper\resources\outputCode\Creative\fujiloc
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\fujiloc'...
remote: Enumerating objects: 10, done.
remote: Counting objects: 100% (10/10), done.
remote: Compressing objects: 100% (10/10), done.
remote: Total 10 (delta 2), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (10/10), done.
Found match
igif
https://github.com/hfu/igif.git
git clone https://github.com/hfu/igif.git D:\Projects\gitscraper\resources\outputCode\Creative\igif
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\igif'...
remote: Enumerating objects: 75, done.
remote: Counting objects: 100% (75/75), done.
remote: Compressing objects: 100% (70/70), done.
remote: Total 75 (delta 17), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (75/75), done.
Found match
hands-on-webmaps
https://github.com/hfu/hands-on-webmaps.git
git clone https://github.com/hfu/hands-on-webmaps.git D:\Projects\gitscraper\resources\outputCode\Creative\hands-on-webmaps
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\hands-on-webmaps'...
remote: Enumerating objects: 43, done.
remote: Total 43 (delta 0), reused 0 (delta 0), pack-reused 43
Unpacking objects: 100% (43/43), done.
Found match
kitasato-ryu
https://github.com/hfu/kitasato-ryu.git
git clone https://github.com/hfu/kitasato-ryu.git D:\Projects\gitscraper\resources\outputCode\Creative\kitasato-ryu
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\kitasato-ryu'...
remote: Enumerating objects: 19, done.
remote: Total 19 (delta 0), reused 0 (delta 0), pack-reused 19
Unpacking objects: 100% (19/19), done.
Found match
Skipped
Found match
awesome-eclipse
https://github.com/hrj/awesome-eclipse.git
git clone https://github.com/hrj/awesome-eclipse.git D:\Projects\gitscraper\resources\outputCode\Creative\awesome-eclipse
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\awesome-eclipse'...
remote: Enumerating objects: 53, done.
remote: Counting objects: 100% (1/1), done.
remote: Total 53 (delta 0), reused 0 (delta 0), pack-reused 52
Unpacking objects: 100% (53/53), done.
Found match
ice2.2020.hun.srt
https://github.com/hsi/ice2.2020.hun.srt.git
git clone https://github.com/hsi/ice2.2020.hun.srt.git D:\Projects\gitscraper\resources\outputCode\Creative\ice2.2020.hun.srt
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\ice2.2020.hun.srt'...
remote: Enumerating objects: 10, done.
remote: Counting objects: 100% (10/10), done.
remote: Compressing objects: 100% (8/8), done.
remote: Total 10 (delta 3), reused 6 (delta 2), pack-reused 0
Unpacking objects: 100% (10/10), done.
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
verson-desc
https://github.com/h2y/verson-desc.git
git clone https://github.com/h2y/verson-desc.git D:\Projects\gitscraper\resources\outputCode\Creative\verson-desc
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\verson-desc'...
remote: Enumerating objects: 24, done.
remote: Counting objects: 100% (24/24), done.
remote: Compressing objects: 100% (16/16), done.
remote: Total 24 (delta 7), reused 24 (delta 7), pack-reused 0
Unpacking objects: 100% (24/24), done.
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
misc-notes
https://github.com/iyn/misc-notes.git
git clone https://github.com/iyn/misc-notes.git D:\Projects\gitscraper\resources\outputCode\Creative\misc-notes
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\misc-notes'...
remote: Enumerating objects: 25, done.
remote: Counting objects: 100% (1/1), done.
remote: Total 25 (delta 0), reused 0 (delta 0), pack-reused 24
Unpacking objects: 100% (25/25), done.
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
mediation
https://github.com/jcb/mediation.git
git clone https://github.com/jcb/mediation.git D:\Projects\gitscraper\resources\outputCode\Creative\mediation
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\mediation'...
remote: Enumerating objects: 7, done.
remote: Total 7 (delta 0), reused 0 (delta 0), pack-reused 7
Unpacking objects: 100% (7/7), done.
Found match
Skipped
Found match
crypto
https://github.com/jig/crypto.git
git clone https://github.com/jig/crypto.git D:\Projects\gitscraper\resources\outputCode\Creative\crypto
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\crypto'...
remote: Enumerating objects: 1981, done.
remote: Total 1981 (delta 0), reused 0 (delta 0), pack-reused 1981 eceiving objects: 97% (1922/1981)
Receiving objects: 100% (1981/1981), 15.51 MiB | 0 bytes/s, done.
Resolving deltas: 100% (1374/1374), done.
Checking out files: 100% (331/331), done.
Found match
Skipped
Found match
labdocs
https://github.com/jjg/labdocs.git
git clone https://github.com/jjg/labdocs.git D:\Projects\gitscraper\resources\outputCode\Creative\labdocs
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\labdocs'...
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 4 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (4/4), done.
Found match
stargazers
https://github.com/jjg/BernieSanders/stargazers.git
git clone https://github.com/jjg/BernieSanders/stargazers.git D:\Projects\gitscraper\resources\outputCode\Creative\stargazers
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\stargazers'...
remote: Not Found
fatal: repository 'https://github.com/jjg/BernieSanders/stargazers.git/' not found
Found match
Skipped
Found match
Skipped
Found match
lists
https://github.com/jnv/lists.git
git clone https://github.com/jnv/lists.git D:\Projects\gitscraper\resources\outputCode\Creative\lists
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\lists'...
remote: Enumerating objects: 9966, done.
remote: Counting objects: 100% (552/552), done.
remote: Compressing objects: 100% (360/360), done.
remote: Total 9966 (delta 205), reused 533 (delta 192), pack-reused 9414
Receiving objects: 100% (9966/9966), 13.99 MiB | 0 bytes/s, done.
Resolving deltas: 100% (3671/3671), done.
Found match
Skipped
Found match
fictional-microprocessors
https://github.com/jpf/fictional-microprocessors.git
git clone https://github.com/jpf/fictional-microprocessors.git D:\Projects\gitscraper\resources\outputCode\Creative\fictional-microprocessors
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\fictional-microprocessors'...
remote: Enumerating objects: 36, done.
remote: Total 36 (delta 0), reused 0 (delta 0), pack-reused 36
Unpacking objects: 100% (36/36), done.
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
Skipped
Found match
stargazers
https://github.com/j5s/awesome/stargazers.git
git clone https://github.com/j5s/awesome/stargazers.git D:\Projects\gitscraper\resources\outputCode\Creative\stargazers
Cloning into 'D:\Projects\gitscraper\resources\outputCode\Creative\stargazers'...
remote: Not Found
fatal: repository 'https://github.com/j5s/awesome/stargazers.git/' not found
Found match
Skipped
Found match
Skipped