-
Notifications
You must be signed in to change notification settings - Fork 1
/
git.eclipse.org.201910
1254 lines (1254 loc) · 73.3 KB
/
git.eclipse.org.201910
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
https://git.eclipse.org/r/4diac/org.eclipse.4diac.examples.git/
https://git.eclipse.org/r/4diac/org.eclipse.4diac.forte.git/
https://git.eclipse.org/r/4diac/org.eclipse.4diac.ide.git/
https://git.eclipse.org/r/acceleo/org.eclipse.acceleo.git/
https://git.eclipse.org/r/actf/org.eclipse.actf.ai.git/
https://git.eclipse.org/r/actf/org.eclipse.actf.common.git/
https://git.eclipse.org/r/actf/org.eclipse.actf.examples.git/
https://git.eclipse.org/r/actf/org.eclipse.actf.visualization.git/
https://git.eclipse.org/r/actf/org.eclipse.actf.visualization.releng.git/
https://git.eclipse.org/r/acute/acute.git/
https://git.eclipse.org/r/agail/agail.git/
https://git.eclipse.org/r/agileuml/agileuml.git/
https://git.eclipse.org/r/ajdt/org.eclipse.ajdt.git/
https://git.eclipse.org/r/amalgam/org.eclipse.amalgam.git/
https://git.eclipse.org/r/amp/org.eclipse.amp.git/
https://git.eclipse.org/r/antenna/antenna.git/
https://git.eclipse.org/r/apogy/apogy.git/
https://git.eclipse.org/r/app4mc/org.eclipse.app4mc.addon.migration.git/
https://git.eclipse.org/r/app4mc/org.eclipse.app4mc.examples.git/
https://git.eclipse.org/r/app4mc/org.eclipse.app4mc.git/
https://git.eclipse.org/r/app4mc/org.eclipse.app4mc.releng.git/
https://git.eclipse.org/r/app4mc/org.eclipse.app4mc.tools.git/
https://git.eclipse.org/r/app4mc/org.eclipse.app4mc.web.git/
https://git.eclipse.org/r/aspectj/org.aspectj.git/
https://git.eclipse.org/r/aspectj/org.aspectj.shadows.git/
https://git.eclipse.org/r/atf/org.eclipse.atf.git/
https://git.eclipse.org/r/avsys/avsys.git/
https://git.eclipse.org/r/babel/plugins.git/
https://git.eclipse.org/r/babel/server.git/
https://git.eclipse.org/r/basyx/basyx.git/
https://git.eclipse.org/r/basyx/basyx.website.git/
https://git.eclipse.org/r/bean-validation/bean-validation.git/
https://git.eclipse.org/r/bpel/org.eclipse.bpel.git/
https://git.eclipse.org/r/bpmn2/org.eclipse.bpmn2.git/
https://git.eclipse.org/r/bpmn2-modeler/org.eclipse.bpmn2-modeler.git/
https://git.eclipse.org/r/bridgeiot/bridgeiot.git/
https://git.eclipse.org/r/ca/ca.git/
https://git.eclipse.org/r/camf/org.eclipse.camf.git/
https://git.eclipse.org/r/capra/org.eclipse.capra.git/
https://git.eclipse.org/r/cargotracker/cargotracker.git/
https://git.eclipse.org/r/cbi/org.eclipse.cbi.examples.git/
https://git.eclipse.org/r/cbi/org.eclipse.cbi.git/
https://git.eclipse.org/r/cbi/org.eclipse.cbi.p2repo.aggregator.git/
https://git.eclipse.org/r/cbi/org.eclipse.cbi.p2repo.analyzers.git/
https://git.eclipse.org/r/cbi/org.eclipse.license.git/
https://git.eclipse.org/r/cdi/cdi.git/
https://git.eclipse.org/r/cdo/cdo.git/
https://git.eclipse.org/r/cdo/cdo.incubator.git/
https://git.eclipse.org/r/cdo/cdo.infrastructure.git/
https://git.eclipse.org/r/cdo/cdo.old.git/
https://git.eclipse.org/r/cdt/org.eclipse.cdt.edc.git/
https://git.eclipse.org/r/cdt/org.eclipse.cdt.git/
https://git.eclipse.org/r/cdt/org.eclipse.cdt.git.150113/
https://git.eclipse.org/r/cdt/org.eclipse.cdt.master.git/
https://git.eclipse.org/r/cdt/org.eclipse.cdt.old.git/
https://git.eclipse.org/r/cdt/org.eclipse.launchbar.git/
https://git.eclipse.org/r/cdt/org.eclipse.tools.templates.git/
https://git.eclipse.org/r/ceylon/ceylon.git/
https://git.eclipse.org/r/che4z/che4z.git/
https://git.eclipse.org/r/codewind/codewind.git/
https://git.eclipse.org/r/cognicrypt/cognicrypt.git/
https://git.eclipse.org/r/context/context.git/
https://git.eclipse.org/r/corrosion/corrosion.git/
https://git.eclipse.org/r/crossmeter/crossmeter.git/
https://git.eclipse.org/r/cu/cu.git/
https://git.eclipse.org/r/cyclonedds/cyclonedds.git/
https://git.eclipse.org/r/dali/webtools.dali.git/
https://git.eclipse.org/r/dash/org.eclipse.dash.dashboard.git/
https://git.eclipse.org/r/dash/org.eclipse.dash.handbook.git/
https://git.eclipse.org/r/dash/org.eclipse.dash.m4e.tools.git/
https://git.eclipse.org/r/dash/org.eclipse.dash.maven.git/
https://git.eclipse.org/r/datatools/org.eclipse.datatools.git/
https://git.eclipse.org/r/deeplearning4j/deeplearning4j.git/
https://git.eclipse.org/r/diffmerge/org.eclipse.emf.diffmerge.coevolution.git/
https://git.eclipse.org/r/diffmerge/org.eclipse.emf.diffmerge.core.git/
https://git.eclipse.org/r/diffmerge/org.eclipse.emf.diffmerge.patch.git/
https://git.eclipse.org/r/diffmerge/org.eclipse.emf.diffmerge.patterns.git/
https://git.eclipse.org/r/dltk/org.eclipse.dltk.all.git/
https://git.eclipse.org/r/dltk/org.eclipse.dltk.core.git/
https://git.eclipse.org/r/dltk/org.eclipse.dltk.examples.git/
https://git.eclipse.org/r/dltk/org.eclipse.dltk.javascript.git/
https://git.eclipse.org/r/dltk/org.eclipse.dltk.python.git/
https://git.eclipse.org/r/dltk/org.eclipse.dltk.releng.git/
https://git.eclipse.org/r/dltk/org.eclipse.dltk.ruby.git/
https://git.eclipse.org/r/dltk/org.eclipse.dltk.sh.git/
https://git.eclipse.org/r/dltk/org.eclipse.dltk.tcl.git/
https://git.eclipse.org/r/duttile/duttile.git/
https://git.eclipse.org/r/e4/eclipse.platform.runtime.e4.git/
https://git.eclipse.org/r/e4/eclipse.platform.ui.compat.git/
https://git.eclipse.org/r/e4/eclipse.platform.ui.e4.git/
https://git.eclipse.org/r/e4/org.eclipse.e4.databinding.git/
https://git.eclipse.org/r/e4/org.eclipse.e4.deeplink.git/
https://git.eclipse.org/r/e4/org.eclipse.e4.installer.git/
https://git.eclipse.org/r/e4/org.eclipse.e4.languages.git/
https://git.eclipse.org/r/e4/org.eclipse.e4.releng.git/
https://git.eclipse.org/r/e4/org.eclipse.e4.resources.git/
https://git.eclipse.org/r/e4/org.eclipse.e4.search.git/
https://git.eclipse.org/r/e4/org.eclipse.e4.tools.git/
https://git.eclipse.org/r/e4/org.eclipse.e4.ui.git/
https://git.eclipse.org/r/e4/org.eclipse.e4.utils.git/
https://git.eclipse.org/r/e4/org.eclipse.jdt.core.git/
https://git.eclipse.org/r/e4/org.eclipse.migration.git/
https://git.eclipse.org/r/ease/org.eclipse.ease.core.git/
https://git.eclipse.org/r/ease/org.eclipse.ease.modules.git/
https://git.eclipse.org/r/ease/org.eclipse.ease.scripts.git/
https://git.eclipse.org/r/eatop/org.eclipse.eatop.git/
https://git.eclipse.org/r/ecf/org.eclipse.ecf.git/
https://git.eclipse.org/r/eclipselink/eclipselink.releng.git/
https://git.eclipse.org/r/eclipselink/eclipselink.runtime.git/
https://git.eclipse.org/r/eclipselink/eclipselink.utils.temp.git/
https://git.eclipse.org/r/eclipselink/examples.git/
https://git.eclipse.org/r/eclipselink/examples/mysports.git/
https://git.eclipse.org/r/eclipselink/examples/nosql.git/
https://git.eclipse.org/r/eclipselink/examples/performance.git/
https://git.eclipse.org/r/eclipselink/examples/temporal.git/
https://git.eclipse.org/r/eclipselink/incubator.git/
https://git.eclipse.org/r/eclipselink/javax.persistence.git/
https://git.eclipse.org/r/eclipselink/oracleddlparser.git/
https://git.eclipse.org/r/eclipsescada/org.eclipse.scada.base.git/
https://git.eclipse.org/r/eclipsescada/org.eclipse.scada.chart.git/
https://git.eclipse.org/r/eclipsescada/org.eclipse.scada.core.git/
https://git.eclipse.org/r/eclipsescada/org.eclipse.scada.deploy.git/
https://git.eclipse.org/r/eclipsescada/org.eclipse.scada.external.git/
https://git.eclipse.org/r/eclipsescada/org.eclipse.scada.hmi.git/
https://git.eclipse.org/r/eclipsescada/org.eclipse.scada.ide.git/
https://git.eclipse.org/r/eclipsescada/org.eclipse.scada.protocols.git/
https://git.eclipse.org/r/eclipsescada/org.eclipse.scada.releng.git/
https://git.eclipse.org/r/eclipsescada/org.eclipse.scada.samples.git/
https://git.eclipse.org/r/eclipsescada/org.eclipse.scada.utils.git/
https://git.eclipse.org/r/ecoretools/org.eclipse.ecoretools.git/
https://git.eclipse.org/r/edapt/org.eclipse.emf.edapt.git/
https://git.eclipse.org/r/ee4j/bean-validation.git/
https://git.eclipse.org/r/ee4j/ca.git/
https://git.eclipse.org/r/ee4j/cargotracker.git/
https://git.eclipse.org/r/ee4j/cdi.git/
https://git.eclipse.org/r/ee4j/cu.git/
https://git.eclipse.org/r/ee4j/ee4j.git/
https://git.eclipse.org/r/ee4j/ejb.git/
https://git.eclipse.org/r/ee4j/el.git/
https://git.eclipse.org/r/ee4j/es.git/
https://git.eclipse.org/r/ee4j/faces.git/
https://git.eclipse.org/r/ee4j/glassfish.git/
https://git.eclipse.org/r/ee4j/grizzly.git/
https://git.eclipse.org/r/ee4j/interceptors.git/
https://git.eclipse.org/r/ee4j/jacc.git/
https://git.eclipse.org/r/ee4j/jaf.git/
https://git.eclipse.org/r/ee4j/jakartaee-examples.git/
https://git.eclipse.org/r/ee4j/jakartaee-platform.git/
https://git.eclipse.org/r/ee4j/jakartaee-stable.git/
https://git.eclipse.org/r/ee4j/jakartaee-tck.git/
https://git.eclipse.org/r/ee4j/jaspic.git/
https://git.eclipse.org/r/ee4j/jaxb-impl.git/
https://git.eclipse.org/r/ee4j/jaxb.git/
https://git.eclipse.org/r/ee4j/jaxrs.git/
https://git.eclipse.org/r/ee4j/jaxws.git/
https://git.eclipse.org/r/ee4j/jca.git/
https://git.eclipse.org/r/ee4j/jersey.git/
https://git.eclipse.org/r/ee4j/jms.git/
https://git.eclipse.org/r/ee4j/jpa.git/
https://git.eclipse.org/r/ee4j/jsonb.git/
https://git.eclipse.org/r/ee4j/jsonp.git/
https://git.eclipse.org/r/ee4j/jsp.git/
https://git.eclipse.org/r/ee4j/jstl.git/
https://git.eclipse.org/r/ee4j/jta.git/
https://git.eclipse.org/r/ee4j/krazo.git/
https://git.eclipse.org/r/ee4j/metro.git/
https://git.eclipse.org/r/ee4j/mojarra.git/
https://git.eclipse.org/r/ee4j/nosql.git/
https://git.eclipse.org/r/ee4j/openmq.git/
https://git.eclipse.org/r/ee4j/orb.git/
https://git.eclipse.org/r/ee4j/servlet.git/
https://git.eclipse.org/r/ee4j/soteria.git/
https://git.eclipse.org/r/ee4j/tyrus.git/
https://git.eclipse.org/r/ee4j/websocket.git/
https://git.eclipse.org/r/eef/org.eclipse.eef.git/
https://git.eclipse.org/r/efm/efm.git/
https://git.eclipse.org/r/efm/org.eclipse.efm-modeling.git/
https://git.eclipse.org/r/efm/org.eclipse.efm-symbex.git/
https://git.eclipse.org/r/efxclipse/org.eclipse.efxclipse.git/
https://git.eclipse.org/r/efxclipse/org.eclipse.efxclipse.travisci.git/
https://git.eclipse.org/r/egerrit/org.eclipse.egerrit.git/
https://git.eclipse.org/r/egf/org.eclipse.emf.egf.git/
https://git.eclipse.org/r/egit/egit-github.git/
https://git.eclipse.org/r/egit/egit-pde.git/
https://git.eclipse.org/r/egit/egit.git/
https://git.eclipse.org/r/ejb/ejb.git/
https://git.eclipse.org/r/ejb/webtools.ejb.git.old/
https://git.eclipse.org/r/el/el.git/
https://git.eclipse.org/r/elogbook/authandauth.git/
https://git.eclipse.org/r/elogbook/elogbook.git/
https://git.eclipse.org/r/elogbook/elogbookFE.git/
https://git.eclipse.org/r/elogbook/portalFE.git/
https://git.eclipse.org/r/emf/org.eclipse.emf.eson.git/
https://git.eclipse.org/r/emf/org.eclipse.emf.git/
https://git.eclipse.org/r/emf-parsley/org.eclipse.emf-parsley.core.git/
https://git.eclipse.org/r/emf-parsley/org.eclipse.emf-parsley.git/
https://git.eclipse.org/r/emf-query/org.eclipse.emf.query.git/
https://git.eclipse.org/r/emf-store/org.eclipse.emf.emfstore.core.git/
https://git.eclipse.org/r/emf-store/org.eclipse.emf.emfstore.other.git/
https://git.eclipse.org/r/emf-store/org.eclipse.emf.emfstore.releng.git/
https://git.eclipse.org/r/emf-transaction/org.eclipse.emf.transaction.git/
https://git.eclipse.org/r/emf-validation/org.eclipse.emf.validation.git/
https://git.eclipse.org/r/emfatic/org.eclipse.emfatic.git/
https://git.eclipse.org/r/emfclient/org.eclipse.emf.ecp.core.git/
https://git.eclipse.org/r/emfclient/org.eclipse.emf.ecp.other.git/
https://git.eclipse.org/r/emfclient/org.eclipse.emf.ecp.releng.git/
https://git.eclipse.org/r/emfcloud/emfcloud.git/
https://git.eclipse.org/r/emfcompare/acceptance-submodules/testGitExtLibrary.git/
https://git.eclipse.org/r/emfcompare/acceptance-submodules/testGitExtLibraryID.git/
https://git.eclipse.org/r/emfcompare/acceptance-submodules/testGitUML.git/
https://git.eclipse.org/r/emfcompare/acceptance-submodules/testGitUMLDesigner.git/
https://git.eclipse.org/r/emfcompare/acceptance-submodules/testGitUMLStereotyped.git/
https://git.eclipse.org/r/emfcompare/org.eclipse.emf.compare-acceptance.git/
https://git.eclipse.org/r/emfcompare/org.eclipse.emf.compare-cli.git/
https://git.eclipse.org/r/emfcompare/org.eclipse.emf.compare-releng.git/
https://git.eclipse.org/r/emfcompare/org.eclipse.emf.compare.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.additional.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.archive.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.composer.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.design.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.docs.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.features.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.libraries.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.nl-libraries.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.nl-src.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.plugins.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.projects.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.prototype.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.tests.git/
https://git.eclipse.org/r/epf/org.eclipse.epf.wiki.git/
https://git.eclipse.org/r/epp/org.eclipse.epp.doc.release.git/
https://git.eclipse.org/r/epp/org.eclipse.epp.logging.git/
https://git.eclipse.org/r/epp/org.eclipse.epp.old.git/
https://git.eclipse.org/r/epp/org.eclipse.epp.packages.git/
https://git.eclipse.org/r/epp/org.eclipse.epp.usagedata.git/
https://git.eclipse.org/r/epsilon/org.eclipse.epsilon.git/
https://git.eclipse.org/r/equinox/rt.equinox.binaries.git/
https://git.eclipse.org/r/equinox/rt.equinox.bundles.git/
https://git.eclipse.org/r/equinox/rt.equinox.framework.git/
https://git.eclipse.org/r/equinox/rt.equinox.incubator.git/
https://git.eclipse.org/r/equinox/rt.equinox.p2.cudf.git/
https://git.eclipse.org/r/equinox/rt.equinox.p2.git/
https://git.eclipse.org/r/es/es.git/
https://git.eclipse.org/r/etrice/org.eclipse.etrice.git/
https://git.eclipse.org/r/faces/faces.git/
https://git.eclipse.org/r/facet/org.eclipse.emf.facet.dev.git/
https://git.eclipse.org/r/facet/org.eclipse.emf.facet.main.git/
https://git.eclipse.org/r/facet/org.eclipse.emf.facet.releng.git/
https://git.eclipse.org/r/fmc/org.eclipse.fmc.core.git/
https://git.eclipse.org/r/fog05/fog05.git/
https://git.eclipse.org/r/gef3d/org.eclipse.gef3d.git/
https://git.eclipse.org/r/gemini/org.eclipse.gemini.git/
https://git.eclipse.org/r/gemini.blueprint/org.eclipse.gemini.blueprint.git/
https://git.eclipse.org/r/gemini.dbaccess/org.eclipse.gemini.dbaccess.git/
https://git.eclipse.org/r/gemini.jpa/org.eclipse.gemini.jpa.git/
https://git.eclipse.org/r/gemini.management/org.eclipse.gemini.managment.git/
https://git.eclipse.org/r/gemini.naming/org.eclipse.gemini.naming.git/
https://git.eclipse.org/r/gemini.web/org.eclipse.gemini.web.gemini-web-container.git/
https://git.eclipse.org/r/gemoc/gemoc.git/
https://git.eclipse.org/r/gendoc/org.eclipse.gendoc.git/
https://git.eclipse.org/r/glassfish/glassfish.git/
https://git.eclipse.org/r/glassfish-tools/glassfish-tools.git/
https://git.eclipse.org/r/glsp/glsp.git/
https://git.eclipse.org/r/gmf-notation/org.eclipse.gmf.notation.git/
https://git.eclipse.org/r/gmf-runtime/org.eclipse.gmf-runtime.git/
https://git.eclipse.org/r/gmf-tooling/org.eclipse.gmf-tooling.git/
https://git.eclipse.org/r/gmf-tooling/org.eclipse.gmf-tooling.uml2tools.git/
https://git.eclipse.org/r/gmf-tooling/org.eclipse.gmf-tooling.uml2tools.releng.git/
https://git.eclipse.org/r/graphiti/org.eclipse.graphiti.git/
https://git.eclipse.org/r/grizzly/grizzly.git/
https://git.eclipse.org/r/handly/org.eclipse.handly.git/
https://git.eclipse.org/r/hawk/hawk.git/
https://git.eclipse.org/r/henshin/org.eclipse.emft.henshin.git/
https://git.eclipse.org/r/hudson/org.eclipse.hudson.core.git/
https://git.eclipse.org/r/hudson/org.eclipse.hudson.maven-hpi-plugin.git/
https://git.eclipse.org/r/hudson/org.eclipse.hudson.remoting.git/
https://git.eclipse.org/r/hudson/org.eclipse.hudson.stapler.git/
https://git.eclipse.org/r/hudson/org.eclipse.hudson.test.harness.git/
https://git.eclipse.org/r/hudson/org.eclipse.hudson.test.ui.git/
https://git.eclipse.org/r/ignite/org.eclipse.ignite.git/
https://git.eclipse.org/r/intent/org.eclipse.mylyn.docs.intent.main.git/
https://git.eclipse.org/r/interceptors/interceptors.git/
https://git.eclipse.org/r/iofog/org.eclipse.iofog.git/
https://git.eclipse.org/r/iottestware/org.eclipse.iottestware.git/
https://git.eclipse.org/r/jacc/jacc.git/
https://git.eclipse.org/r/jaf/jaf.git/
https://git.eclipse.org/r/jakartabatch/jakartabatch.git/
https://git.eclipse.org/r/jakartaee-examples/jakartaee-examples.git/
https://git.eclipse.org/r/jakartaee-platform/jakartaee-platform.git/
https://git.eclipse.org/r/jakartaee-stable/jakartaee-stable.git/
https://git.eclipse.org/r/jakartaee-tck/jakartaee-tck.git/
https://git.eclipse.org/r/jaspic/jaspic.git/
https://git.eclipse.org/r/javamail/javamail.git/
https://git.eclipse.org/r/jaxb/jaxb.git/
https://git.eclipse.org/r/jaxb-impl/jaxb-impl.git/
https://git.eclipse.org/r/jaxrs/jaxrs.git/
https://git.eclipse.org/r/jaxws/jaxws.git/
https://git.eclipse.org/r/jca/jca.git/
https://git.eclipse.org/r/jdt/eclipse.jdt.core.binaries.git/
https://git.eclipse.org/r/jdt/eclipse.jdt.core.git/
https://git.eclipse.org/r/jdt/eclipse.jdt.debug.git/
https://git.eclipse.org/r/jdt/eclipse.jdt.git/
https://git.eclipse.org/r/jdt/eclipse.jdt.ui.git/
https://git.eclipse.org/r/jeetools/webtools.ejb.git/
https://git.eclipse.org/r/jeetools/webtools.javaee.git/
https://git.eclipse.org/r/jeetools/webtools.javaee.tests.git/
https://git.eclipse.org/r/jemo/jemo.git/
https://git.eclipse.org/r/jersey/jersey.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.admin.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.alpn.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.npn.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.orbit.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.parent.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.project.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.releng.bundles.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.releng.products.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.sandbox.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.toolchain.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.website.git/
https://git.eclipse.org/r/jetty/org.eclipse.jetty.wtp.git/
https://git.eclipse.org/r/jgit/jgit.git/
https://git.eclipse.org/r/jms/jms.git/
https://git.eclipse.org/r/jpa/jpa.git/
https://git.eclipse.org/r/jsdt/jsdt-parent.git/
https://git.eclipse.org/r/jsdt/webtools.jsdt.core.git/
https://git.eclipse.org/r/jsdt/webtools.jsdt.debug.git/
https://git.eclipse.org/r/jsdt/webtools.jsdt.git/
https://git.eclipse.org/r/jsdt/webtools.jsdt.tests.git/
https://git.eclipse.org/r/jsf/webtools.jsf.docs.git/
https://git.eclipse.org/r/jsf/webtools.jsf.git/
https://git.eclipse.org/r/jsf/webtools.jsf.tests.git/
https://git.eclipse.org/r/jsonb/jsonb.git/
https://git.eclipse.org/r/jsonp/jsonp.git/
https://git.eclipse.org/r/jsp/jsp.git/
https://git.eclipse.org/r/jstl/jstl.git/
https://git.eclipse.org/r/jta/jta.git/
https://git.eclipse.org/r/jubula/org.eclipse.jubula.ci.git/
https://git.eclipse.org/r/jubula/org.eclipse.jubula.core.git/
https://git.eclipse.org/r/jwt/org.eclipse.soa.jwt.git/
https://git.eclipse.org/r/keti/keti.git/
https://git.eclipse.org/r/keyple/keyple.git/
https://git.eclipse.org/r/kiso/kiso.git/
https://git.eclipse.org/r/krazo/krazo.git/
https://git.eclipse.org/r/kuksa/kuksa.git/
https://git.eclipse.org/r/kuksa/www.git/
https://git.eclipse.org/r/ldt/org.eclipse.ldt.git/
https://git.eclipse.org/r/ldt/org.eclipse.metalua.git/
https://git.eclipse.org/r/libra/org.eclipse.libra.git/
https://git.eclipse.org/r/linuxtools/org.eclipse.linuxtools.eclipse-build.git/
https://git.eclipse.org/r/linuxtools/org.eclipse.linuxtools.git/
https://git.eclipse.org/r/lsp4e/lsp4e.git/
https://git.eclipse.org/r/lsp4j/org.eclipse.lsp4j.git/
https://git.eclipse.org/r/lyo/org.eclipse.lyo.tools.git/
https://git.eclipse.org/r/m2e/m2e-core.git/
https://git.eclipse.org/r/m2e/m2e-discovery-catalog.git/
https://git.eclipse.org/r/m2e/org.eclipse.m2e.workspace.git/
https://git.eclipse.org/r/m2e-wtp/org.eclipse.m2e.wtp.git/
https://git.eclipse.org/r/m2e-wtp/org.eclipse.m2e.wtp.jpa.git/
https://git.eclipse.org/r/m2t/org.eclipse.jet.git/
https://git.eclipse.org/r/m2t/org.eclipse.xpand.git/
https://git.eclipse.org/r/mangrove/org.eclipse.mangrove.git/
https://git.eclipse.org/r/mat/org.eclipse.mat.git/
https://git.eclipse.org/r/mdht/org.eclipse.mdht.git/
https://git.eclipse.org/r/mdmbl/org.eclipse.mdm.api.base.git/
https://git.eclipse.org/r/mdmbl/org.eclipse.mdm.api.default.git/
https://git.eclipse.org/r/mdmbl/org.eclipse.mdm.api.odsadapter.git/
https://git.eclipse.org/r/mdmbl/org.eclipse.mdm.api.uml.git/
https://git.eclipse.org/r/mdmbl/org.eclipse.mdm.mdfsorter.git/
https://git.eclipse.org/r/mdmbl/org.eclipse.mdm.nucleus.git/
https://git.eclipse.org/r/mdmbl/org.eclipse.mdm.openatfx.mdf.git/
https://git.eclipse.org/r/mdmbl/org.eclipse.mdm.realms.git/
https://git.eclipse.org/r/mdmbl/org.eclipse.mdmbl.git/
https://git.eclipse.org/r/metro/metro.git/
https://git.eclipse.org/r/mita/mita.git/
https://git.eclipse.org/r/mmt/org.eclipse.atl.git/
https://git.eclipse.org/r/mmt/org.eclipse.atl.tcs.git/
https://git.eclipse.org/r/mmt/org.eclipse.qvtd.git/
https://git.eclipse.org/r/mmt/org.eclipse.qvto.git/
https://git.eclipse.org/r/modisco/org.eclipse.modisco.git/
https://git.eclipse.org/r/mojarra/mojarra.git/
https://git.eclipse.org/r/mpc/org.eclipse.epp.mpc.git/
https://git.eclipse.org/r/mtj/org.eclipse.mtj.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.all.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.builds.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.commons.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.context.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.context.mft.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.docs.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.docs.vex.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.incubator.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.reviews.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.reviews.ui.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.tasks.git/
https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.versions.git/
https://git.eclipse.org/r/n4js/n4js.git/
https://git.eclipse.org/r/nattable/org.eclipse.nebula.widgets.nattable.experimental.git/
https://git.eclipse.org/r/nattable/org.eclipse.nebula.widgets.nattable.git/
https://git.eclipse.org/r/nebula/org.eclipse.nebula.git/
https://git.eclipse.org/r/nosql/nosql.git/
https://git.eclipse.org/r/objectteams/org.eclipse.objectteams.git/
https://git.eclipse.org/r/ocl/org.eclipse.ocl.git/
https://git.eclipse.org/r/ogee/org.eclipse.ogee.git/
https://git.eclipse.org/r/om2m/om2m-legacy.git/
https://git.eclipse.org/r/om2m/org.eclipse.om2m.git/
https://git.eclipse.org/r/oomph/org.eclipse.oomph.git/
https://git.eclipse.org/r/oomph/org.eclipse.oomph.incubator.git/
https://git.eclipse.org/r/oomph/org.eclipse.oomph.setups.git/
https://git.eclipse.org/r/oomph/uss.git/
https://git.eclipse.org/r/openj9/openj9.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk-platform.openk-repo.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.build.codeconventions.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.build.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.cim.cim17v07.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.cim.profile.openkonsequenz.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.common.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.domain.assetdata.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.domain.dynamictopology.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.domain.measurement.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.domain.statictopology.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.domain.topologystate.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.service.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.sourcesystem.mockupassetdata.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.sourcesystem.mockupmeasurement.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.sourcesystem.mockupstatictopology.git/
https://git.eclipse.org/r/openk-platform/org.eclipse.openk.sourcesystem.mockuptopologystate.git/
https://git.eclipse.org/r/openk-usermodules/openk-usermodules.git/
https://git.eclipse.org/r/openk-usermodules/org.eclipse.openk-usermodules.mics.centralService.git/
https://git.eclipse.org/r/openk-usermodules/org.eclipse.openk-usermodules.mics.homeService.git/
https://git.eclipse.org/r/openk-usermodules/org.eclipse.openk-usermodules.plannedGridMeasures.backend.git/
https://git.eclipse.org/r/openk-usermodules/org.eclipse.openk-usermodules.plannedGridMeasures.frontend.git/
https://git.eclipse.org/r/openk-usermodules/org.eclipse.openk-usermodules.standbyPlanning.backend.git/
https://git.eclipse.org/r/openk-usermodules/org.eclipse.openk-usermodules.standbyPlanning.docu.git/
https://git.eclipse.org/r/openk-usermodules/org.eclipse.openk-usermodules.standbyPlanning.frontend.git/
https://git.eclipse.org/r/openmq/openmq.git/
https://git.eclipse.org/r/orb/orb.git/
https://git.eclipse.org/r/orbit/orbit-recipes.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.abstractstatemachine.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.authentication.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.authentication.ui.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.autowireHelper.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.blob.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.bpm.api.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.bpm.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.bpmn2.ecore.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.core.api.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.datainterchange.api.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.dependencies-mbp.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.dependencies.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.dependencies.p2.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.display.api.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.display.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.dsl.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.dsl.metadata.service.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.ecview.addons.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.ecview.core.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.ecview.extension.api.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.ecview.extension.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.eventbroker.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.filter.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.fork.jpos.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.fork.mihalis.opal.imageSelector.osgi.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.fork.uomo.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.fork.vaadin.addon.maskedtextfield.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.fork.vaadin.addons.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.gitinfo.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.i18n.common.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.ide.core.ui.softwarefactory.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.ide.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.ide.logger.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.infogrid.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.jpa.services.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.mobile.vaadin.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.mondrian.api.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.mondrian.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.osgi.hybrid.api.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.osgi.hybrid.api.runtime.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.persistence.fragment.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.persistence.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.preferences.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.releng.maven.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.report.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.runtime.functionlibrary.validation.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.runtime.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.runtime.web.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.softwarefactory.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.technologystack.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.tools.graphical.entity.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.ui.api.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.ui.common.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.utils.functionnormalizer.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.utils.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.utils.img.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.utils.js.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.utils.themes.ui.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.utils.ui.classloaderservice.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.utils.ui.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.vaaclipse.addons.common.api.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.vaaclipse.addons.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.vaaclipse.addons.softwarefactory.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.vaaclipse.common.ecview.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.vaaclipse.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.vaaclipse.tools.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.vaadin.addons.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.vaadin.emf.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.vaadin.widgetset.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.webserver.messagequeue.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.wizard.ui.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.action.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.addons.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.authorization.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.basic.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.blip.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.chart.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.cube.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.datainterchange.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.datamart.common.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.datamart.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.dialog.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.entitymock.common.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.entitymock.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.functionlibrary.common.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.functionlibrary.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.gridsource.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.i18n.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.menu.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.message.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.organization.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.oxtype.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.perspective.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.report.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.signal.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.statemachine.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.strategy.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.table.common.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.table.git/
https://git.eclipse.org/r/osbp/org.eclipse.osbp.xtext.topology.git/
https://git.eclipse.org/r/osee/org.eclipse.osee.git/
https://git.eclipse.org/r/osee/org.eclipse.ote.git/
https://git.eclipse.org/r/packager/packager.git/
https://git.eclipse.org/r/packages/packages.git/
https://git.eclipse.org/r/paho/org.eclipse.paho.apps.git/
https://git.eclipse.org/r/paho/org.eclipse.paho.esf.git/
https://git.eclipse.org/r/paho/org.eclipse.paho.mqtt-sn.apps.git/
https://git.eclipse.org/r/paho/org.eclipse.paho.mqtt.lua.git/
https://git.eclipse.org/r/paho/org.eclipse.paho.mqtt.objc.git/
https://git.eclipse.org/r/paho.incubator/org.eclipse.paho.mqtt.lua.git/
https://git.eclipse.org/r/paho.incubator/smidge.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-bpmn.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-cdo.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-collaborativemodeling.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-designer-extra.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-designer.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-ease.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-informationmodeling.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-interoperability.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-iotml.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-marte.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-model2doc.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-moka.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-moka.incubation.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-productline.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-requirements.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-robotics.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-robotml.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-schedule.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-sysml.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-sysml11.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus-sysml16.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus.incubation.git/
https://git.eclipse.org/r/papyrus/org.eclipse.papyrus.tools.git/
https://git.eclipse.org/r/papyrus-rt/org.eclipse.papyrus-rt.git/
https://git.eclipse.org/r/pde/eclipse.pde.build.git/
https://git.eclipse.org/r/pde/eclipse.pde.git/
https://git.eclipse.org/r/pde/eclipse.pde.incubator.git/
https://git.eclipse.org/r/pde/eclipse.pde.ui.git/
https://git.eclipse.org/r/pdt/org.eclipse.pdt.git/
https://git.eclipse.org/r/platform/eclipse.platform.common.git/
https://git.eclipse.org/r/platform/eclipse.platform.debug.git/
https://git.eclipse.org/r/platform/eclipse.platform.git/
https://git.eclipse.org/r/platform/eclipse.platform.images.git/
https://git.eclipse.org/r/platform/eclipse.platform.news.git/
https://git.eclipse.org/r/platform/eclipse.platform.releng.aggregator.git/
https://git.eclipse.org/r/platform/eclipse.platform.releng.buildtools.git/
https://git.eclipse.org/r/platform/eclipse.platform.releng.git/
https://git.eclipse.org/r/platform/eclipse.platform.resources.git/
https://git.eclipse.org/r/platform/eclipse.platform.runtime.git/
https://git.eclipse.org/r/platform/eclipse.platform.swt.binaries.git/
https://git.eclipse.org/r/platform/eclipse.platform.swt.git/
https://git.eclipse.org/r/platform/eclipse.platform.team.git/
https://git.eclipse.org/r/platform/eclipse.platform.text.git/
https://git.eclipse.org/r/platform/eclipse.platform.ua.git/
https://git.eclipse.org/r/platform/eclipse.platform.ui.git/
https://git.eclipse.org/r/platform/eclipse.platform.ui.tools.git/
https://git.eclipse.org/r/ptp/org.eclipse.photran.git/
https://git.eclipse.org/r/ptp/org.eclipse.ptp.doc.git/
https://git.eclipse.org/r/ptp/org.eclipse.ptp.git/
https://git.eclipse.org/r/ptp/org.eclipse.ptp.master.git/
https://git.eclipse.org/r/ptp/org.eclipse.remote.git/
https://git.eclipse.org/r/r4e/org.eclipse.mylyn.reviews.r4e.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.chart.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.clientscripting.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.cnf.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.dropdown.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.e4.compatibility.workbench.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.e4.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.fileupload.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.gef.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.nebula-grid.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.osgi-packaging.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.pde.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.releng.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.richtext.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.spreadsheet.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.tabbed-properties.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.texteditor.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.themeeditor.git/
https://git.eclipse.org/r/rap/incubator/org.eclipse.rap.incubator.visualization.git/
https://git.eclipse.org/r/rap/org.apache.tomcat.git/
https://git.eclipse.org/r/rap/org.eclipse.rap.git/
https://git.eclipse.org/r/rap/org.eclipse.rap.tools.git/
https://git.eclipse.org/r/rasterframes/rasterframes.git/
https://git.eclipse.org/r/rcptt/org.eclipse.rcptt.git/
https://git.eclipse.org/r/rcptt/org.eclipse.rcptt.git.back/
https://git.eclipse.org/r/rcptt/org.eclipse.rcptt.mockups.git/
https://git.eclipse.org/r/refactor/org.eclipse.emf.refactor.build.git/
https://git.eclipse.org/r/refactor/org.eclipse.emf.refactor.core.git/
https://git.eclipse.org/r/refactor/org.eclipse.emf.refactor.documentation.git/
https://git.eclipse.org/r/refactor/org.eclipse.emf.refactor.examples.git/
https://git.eclipse.org/r/refactor/org.eclipse.emf.refactor.features.git/
https://git.eclipse.org/r/refactor/org.eclipse.emf.refactor.metrics.git/
https://git.eclipse.org/r/refactor/org.eclipse.emf.refactor.refactoring.git/
https://git.eclipse.org/r/refactor/org.eclipse.emf.refactor.smells.git/
https://git.eclipse.org/r/remus/org.eclipse.remus.git/
https://git.eclipse.org/r/repairnator/repairnator.git/
https://git.eclipse.org/r/rmf/org.eclipse.rmf.documentation.git/
https://git.eclipse.org/r/rmf/org.eclipse.rmf.git/
https://git.eclipse.org/r/rtp/org.eclipse.rtp.git/
https://git.eclipse.org/r/rtsc/org.eclipse.rtsc.committer.git/
https://git.eclipse.org/r/rtsc/org.eclipse.rtsc.contrib.git/
https://git.eclipse.org/r/rtsc/org.eclipse.rtsc.test.git/
https://git.eclipse.org/r/rtsc/org.eclipse.rtsc.training.git/
https://git.eclipse.org/r/rtsc/org.eclipse.rtsc.xdccore.git/
https://git.eclipse.org/r/sandbox/egit-training.git/
https://git.eclipse.org/r/sapphire/org.eclipse.corundum.git/
https://git.eclipse.org/r/sapphire/org.eclipse.sapphire.git/
https://git.eclipse.org/r/sapphire/org.eclipse.yaml.git/
https://git.eclipse.org/r/scanning/org.eclipse.scanning.git/
https://git.eclipse.org/r/scout/maven-master.git/
https://git.eclipse.org/r/scout/oomph.git/
https://git.eclipse.org/r/scout/org.eclipse.scout-aggregator.git/
https://git.eclipse.org/r/scout/org.eclipse.scout.rt.git/
https://git.eclipse.org/r/scout/org.eclipse.scout.sdk.git/
https://git.eclipse.org/r/scout/scout.rt.incubator.git/
https://git.eclipse.org/r/sensinact/org.eclipse.sensinact.gateway.git/
https://git.eclipse.org/r/sensinact/org.eclipse.sensinact.git/
https://git.eclipse.org/r/sensinact/org.eclipse.sensinact.studio.git/
https://git.eclipse.org/r/sensinact/org.eclipse.sensinact.studioweb.git/
https://git.eclipse.org/r/servertools/webtools.servertools.devsupport.git/
https://git.eclipse.org/r/servertools/webtools.servertools.docs.git/
https://git.eclipse.org/r/servertools/webtools.servertools.git/
https://git.eclipse.org/r/servertools/webtools.servertools.tests.git/
https://git.eclipse.org/r/servlet/servlet.git/
https://git.eclipse.org/r/set/set.git/
https://git.eclipse.org/r/shellwax/shellwax.git/
https://git.eclipse.org/r/simopenpass/doc.git/
https://git.eclipse.org/r/simopenpass/simopenpass.git/
https://git.eclipse.org/r/simrel/org.eclipse.simrel.build.git/
https://git.eclipse.org/r/simrel/org.eclipse.simrel.oldcvssimrelprojects.git/
https://git.eclipse.org/r/simrel/org.eclipse.simrel.tools.git/
https://git.eclipse.org/r/sirius/org.eclipse.sirius.git/
https://git.eclipse.org/r/sirius/org.eclipse.sirius.legacy.git/
https://git.eclipse.org/r/sisu/org.eclipse.sisu.inject.git/
https://git.eclipse.org/r/sisu/org.eclipse.sisu.mojos.git/
https://git.eclipse.org/r/sisu/org.eclipse.sisu.plexus.git/
https://git.eclipse.org/r/skalli/org.eclipse.skalli.git/
https://git.eclipse.org/r/smila/org.eclipse.smila.core.git/
https://git.eclipse.org/r/smila/org.eclipse.smila.tooling.git/
https://git.eclipse.org/r/soteria/soteria.git/
https://git.eclipse.org/r/sourceediting/webtools.sourceediting.git/
https://git.eclipse.org/r/sourceediting/webtools.sourceediting.tests.git/
https://git.eclipse.org/r/sourceediting/webtools.sourceediting.xpath.git/
https://git.eclipse.org/r/sourceediting/webtools.sourceediting.xpath.tests.git/
https://git.eclipse.org/r/sourceediting/webtools.sourceediting.xsl.git/
https://git.eclipse.org/r/sourceediting/webtools.sourceediting.xsl.tests.git/
https://git.eclipse.org/r/sphinx/org.eclipse.sphinx.git/
https://git.eclipse.org/r/statet/org.eclipse.statet-commons.git/
https://git.eclipse.org/r/statet/org.eclipse.statet-docmlet.git/
https://git.eclipse.org/r/statet/org.eclipse.statet-eutils.git/
https://git.eclipse.org/r/statet/org.eclipse.statet-ltk.git/
https://git.eclipse.org/r/statet/org.eclipse.statet-r.git/
https://git.eclipse.org/r/statet/org.eclipse.statet-rj.git/
https://git.eclipse.org/r/statet/org.eclipse.statet.git/
https://git.eclipse.org/r/steady/steady.git/
https://git.eclipse.org/r/stem/org.eclipse.stem.data.earthscience.git/
https://git.eclipse.org/r/stem/org.eclipse.stem.data.git/
https://git.eclipse.org/r/stem/org.eclipse.stem.git/
https://git.eclipse.org/r/sumo/sumo.git/
https://git.eclipse.org/r/sw360/org.eclipse.sw360.git/
https://git.eclipse.org/r/swtbot/org.eclipse.swtbot.git/
https://git.eclipse.org/r/swtchart/swtchart.git/
https://git.eclipse.org/r/systemfocus/systemfocus.git/
https://git.eclipse.org/r/tahu/tahu.git/
https://git.eclipse.org/r/tcf/org.eclipse.tcf.agent.git/
https://git.eclipse.org/r/tcf/org.eclipse.tcf.git/
https://git.eclipse.org/r/tea/tea.git/
https://git.eclipse.org/r/teneo/org.eclipse.emf.teneo.git/
https://git.eclipse.org/r/texlipse/texlipse.git/
https://git.eclipse.org/r/texo/org.eclipse.emf.texo.git/
https://git.eclipse.org/r/theia/theia.git/
https://git.eclipse.org/r/thingweb/thingweb.git/
https://git.eclipse.org/r/tigerstripe/org.eclipse.tigerstripe.git/
https://git.eclipse.org/r/tinydtls/org.eclipse.tinydtls.git/
https://git.eclipse.org/r/titan/titan.ApplicationLibraries.CoAP.git/
https://git.eclipse.org/r/titan/titan.ApplicationLibraries.HTTP.git/
https://git.eclipse.org/r/titan/titan.ApplicationLibraries.LWM2M.git/
https://git.eclipse.org/r/titan/titan.ApplicationLibraries.MBT.git/
https://git.eclipse.org/r/titan/titan.ApplicationLibraries.MQTT.git/
https://git.eclipse.org/r/titan/titan.Applications.IoT_Functiontest_Framework.git/
https://git.eclipse.org/r/titan/titan.Applications.IoT_Loadtest_Framework.git/
https://git.eclipse.org/r/titan/titan.Applications.RIoT.git/
https://git.eclipse.org/r/titan/titan.Libraries.CLL.git/
https://git.eclipse.org/r/titan/titan.Libraries.ServiceFramework.git/
https://git.eclipse.org/r/titan/titan.Libraries.TLS.git/
https://git.eclipse.org/r/titan/titan.Libraries.Web_GUI.git/
https://git.eclipse.org/r/titan/titan.ProtocolEmulations.M3UA.git/
https://git.eclipse.org/r/titan/titan.ProtocolEmulations.SCCP.git/
https://git.eclipse.org/r/titan/titan.ProtocolEmulations.SCTP.git/
https://git.eclipse.org/r/titan/titan.ProtocolEmulations.SUA.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29502_Nsmf_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29503_Nudm_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29508_Nsmf_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29509_Nausf_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29510_Nnrf_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29511_N5g_eir_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29512_Npcf_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29514_Npcf_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29518_Namf_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29520_Nnwdaf_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29571_CommonData_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29572_Nlmf_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS29594_Nchf_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.5G_system_TS32291_Nchf_v15.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.BSSAPP_v7.3.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.BSSGP_v13.0.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.BSSMAP_v11.2.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.CoAP.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.DSS1_ETSI.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.DUA.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.EAP.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.GCP_31r1.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.GRE.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.GTP_v13.5.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.GTPv2_v13.7.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.GTPv2_v15.2.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.HTTP2.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.ISUP_Q.762.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.JSON_Generic.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.LLC_v7.1.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.M2PA.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.M2UA.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.MQTT.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.MobileL3_v13.4.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.MongoDB.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.NAS_EPS_15.2.0.1.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.NDP.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.NS_v7.3.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.NTAF.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.OPC_UA.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.PFCP_v15.1.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.ROSE.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.SCTP.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.SDP.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.SGsAP_13.2.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.SNDCP_v7.0.0.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.STOMP.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.STUN.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.STUN_RFC5389.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.SUA.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.TLS.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.V5.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.WTP.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.XML_RPC.git/
https://git.eclipse.org/r/titan/titan.ProtocolModules.XTDP.git/
https://git.eclipse.org/r/titan/titan.Servers.GTP_Tunnel_Daemon.git/
https://git.eclipse.org/r/titan/titan.Servers.IP_Daemon_Dynamic.git/
https://git.eclipse.org/r/titan/titan.Servers.SCTP_Daemon_Dynamic.git/
https://git.eclipse.org/r/titan/titan.TestPorts.GPIO.git/
https://git.eclipse.org/r/titan/titan.TestPorts.MTP3asp.git/
https://git.eclipse.org/r/titan/titan.TestPorts.Serial.git/
https://git.eclipse.org/r/titan/titan.TestPorts.SocketCANasp.git/
https://git.eclipse.org/r/titan/titan.TestPorts.Thrift_TPG.git/
https://git.eclipse.org/r/tm/org.eclipse.tm.git/
https://git.eclipse.org/r/tm4e/tm4e.git/
https://git.eclipse.org/r/tracecompass/org.eclipse.tracecompass.git/
https://git.eclipse.org/r/tracecompass/tracecompass-test-traces.git/
https://git.eclipse.org/r/tracecompass.incubator/org.eclipse.tracecompass.incubator.git/
https://git.eclipse.org/r/tycho/org.eclipse.tycho-demo.git/
https://git.eclipse.org/r/tycho/org.eclipse.tycho.extras.git/
https://git.eclipse.org/r/tycho/org.eclipse.tycho.git/
https://git.eclipse.org/r/tycho/org.eclipse.tycho.nexus.git/
https://git.eclipse.org/r/tycho/org.eclipse.tycho.p2-fork.git/
https://git.eclipse.org/r/tycho/org.eclipse.tycho.targeteditor.git/
https://git.eclipse.org/r/tyrus/tyrus.git/
https://git.eclipse.org/r/uml2/org.eclipse.uml2.git/
https://git.eclipse.org/r/uml2/org.eclipse.uml2.git.040612/
https://git.eclipse.org/r/uml2/org.eclipse.uml2.test.git/
https://git.eclipse.org/r/umlgen/org.eclipse.umlgen.git/
https://git.eclipse.org/r/unide/org.eclipse.unide.git/
https://git.eclipse.org/r/uomo/org.eclipse.uomo.git/
https://git.eclipse.org/r/upr/upr.git/
https://git.eclipse.org/r/usssdk/org.eclipse.usssdk.git/
https://git.eclipse.org/r/viatra/org.eclipse.viatra.examples.git/
https://git.eclipse.org/r/viatra/org.eclipse.viatra.git/
https://git.eclipse.org/r/viatra/org.eclipse.viatra.modelobfuscator.git/
https://git.eclipse.org/r/viatra/org.eclipse.viatra2.vpm.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.apps.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.artifact-repository.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.bundlor.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.documentation.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.eclipse-mirror.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.gradle-build.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.ide.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.jetty-server.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.kernel-system-verification-tests.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.kernel-tools.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.kernel.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.medic.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.nano.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.osgi-extensions.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.osgi-test-stubs.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.packaging.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.performance-test.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.root.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.sample-configuration-properties.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.sample-formtags.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.sample-greenpages.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.sample-osgi-examples.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.samples.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.snaps.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.system-verification-tests.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.test.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.util.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.virgo-build.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.web-server.git/
https://git.eclipse.org/r/virgo/org.eclipse.virgo.web.git/
https://git.eclipse.org/r/volttron/volttron.git/
https://git.eclipse.org/r/vorto/org.eclipse.vorto.git/
https://git.eclipse.org/r/webservices/webtools.webservices.axis2.git/
https://git.eclipse.org/r/webservices/webtools.webservices.git/
https://git.eclipse.org/r/webservices/webtools.webservices.jaxws.git/
https://git.eclipse.org/r/websites/dev.eclipse.org.git/
https://git.eclipse.org/r/websites/events.eclipse.org.git/
https://git.eclipse.org/r/websocket/websocket.git/
https://git.eclipse.org/r/webtools/incubator/org.eclipse.webtools.incubator.sieditor.git/
https://git.eclipse.org/r/webtools/incubator/org.eclipse.webtools.incubator.xmlsearch.git/
https://git.eclipse.org/r/webtools/org.eclipse.webtools.incubator.git/
https://git.eclipse.org/r/webtools/webtools.maps.git/
https://git.eclipse.org/r/webtools/webtools.releng.aggregator.git/
https://git.eclipse.org/r/webtools/webtools.releng.git/
https://git.eclipse.org/r/webtools/webtools.releng.patch.aggregator.git/
https://git.eclipse.org/r/webtools-common/webtools.common.fproj.git/
https://git.eclipse.org/r/webtools-common/webtools.common.git/
https://git.eclipse.org/r/webtools-common/webtools.common.snippets.git/
https://git.eclipse.org/r/webtools-common/webtools.common.tests.git/
https://git.eclipse.org/r/windowbuilder/org.eclipse.windowbuilder.git/
https://git.eclipse.org/r/www.eclipse.org/4diac.git/
https://git.eclipse.org/r/www.eclipse.org/MoDisco.git/
https://git.eclipse.org/r/www.eclipse.org/Xtext.git/
https://git.eclipse.org/r/www.eclipse.org/acceleo.git/
https://git.eclipse.org/r/www.eclipse.org/actf.git/
https://git.eclipse.org/r/www.eclipse.org/acute.git/
https://git.eclipse.org/r/www.eclipse.org/agail.git/
https://git.eclipse.org/r/www.eclipse.org/agileuml.git/
https://git.eclipse.org/r/www.eclipse.org/ajdt.git/
https://git.eclipse.org/r/www.eclipse.org/amp.git/
https://git.eclipse.org/r/www.eclipse.org/amw.git/
https://git.eclipse.org/r/www.eclipse.org/andmore.git/
https://git.eclipse.org/r/www.eclipse.org/antenna.git/
https://git.eclipse.org/r/www.eclipse.org/apogy.git/
https://git.eclipse.org/r/www.eclipse.org/app4mc.git/
https://git.eclipse.org/r/www.eclipse.org/arch.git/
https://git.eclipse.org/r/www.eclipse.org/articles.git/
https://git.eclipse.org/r/www.eclipse.org/artwork.git/
https://git.eclipse.org/r/www.eclipse.org/aspectj.git/
https://git.eclipse.org/r/www.eclipse.org/atf.git/
https://git.eclipse.org/r/www.eclipse.org/atl.git/
https://git.eclipse.org/r/www.eclipse.org/avsys.git/
https://git.eclipse.org/r/www.eclipse.org/babel.git/
https://git.eclipse.org/r/www.eclipse.org/basyx.git/
https://git.eclipse.org/r/www.eclipse.org/birt.git/
https://git.eclipse.org/r/www.eclipse.org/bpel.git/
https://git.eclipse.org/r/www.eclipse.org/bpmn2-modeler.git/
https://git.eclipse.org/r/www.eclipse.org/bridgeiot.git/
https://git.eclipse.org/r/www.eclipse.org/buildship.git/
https://git.eclipse.org/r/www.eclipse.org/californium.git/
https://git.eclipse.org/r/www.eclipse.org/callisto.git/
https://git.eclipse.org/r/www.eclipse.org/camf.git/
https://git.eclipse.org/r/www.eclipse.org/capra.git/
https://git.eclipse.org/r/www.eclipse.org/cbi-jekyll.git/
https://git.eclipse.org/r/www.eclipse.org/cbi.git/
https://git.eclipse.org/r/www.eclipse.org/cdo.git/
https://git.eclipse.org/r/www.eclipse.org/cdt.git/
https://git.eclipse.org/r/www.eclipse.org/ceylon.git/
https://git.eclipse.org/r/www.eclipse.org/cft.git/
https://git.eclipse.org/r/www.eclipse.org/che.git/
https://git.eclipse.org/r/www.eclipse.org/che4z.git/
https://git.eclipse.org/r/www.eclipse.org/chemclipse.git/
https://git.eclipse.org/r/www.eclipse.org/codewind.git/
https://git.eclipse.org/r/www.eclipse.org/cognicrypt.git/
https://git.eclipse.org/r/www.eclipse.org/collections.git/
https://git.eclipse.org/r/www.eclipse.org/community.git/
https://git.eclipse.org/r/www.eclipse.org/concierge.git/
https://git.eclipse.org/r/www.eclipse.org/contribute.git/
https://git.eclipse.org/r/www.eclipse.org/corporate_sponsors.git/
https://git.eclipse.org/r/www.eclipse.org/corrosion.git/
https://git.eclipse.org/r/www.eclipse.org/cyclonedds.git/
https://git.eclipse.org/r/www.eclipse.org/dartboard.git/
https://git.eclipse.org/r/www.eclipse.org/dash.git/
https://git.eclipse.org/r/www.eclipse.org/datatools.git/
https://git.eclipse.org/r/www.eclipse.org/dawnsci.git/
https://git.eclipse.org/r/www.eclipse.org/deeplearning4j.git/
https://git.eclipse.org/r/www.eclipse.org/diffmerge.git/
https://git.eclipse.org/r/www.eclipse.org/dirigible.git/
https://git.eclipse.org/r/www.eclipse.org/ditto.git/
https://git.eclipse.org/r/www.eclipse.org/dltk.git/
https://git.eclipse.org/r/www.eclipse.org/documentation.git/
https://git.eclipse.org/r/www.eclipse.org/donate.git/
https://git.eclipse.org/r/www.eclipse.org/downloads.git/
https://git.eclipse.org/r/www.eclipse.org/duttile.git/
https://git.eclipse.org/r/www.eclipse.org/e4.git/
https://git.eclipse.org/r/www.eclipse.org/ease.git/
https://git.eclipse.org/r/www.eclipse.org/eatop.git/
https://git.eclipse.org/r/www.eclipse.org/eavp.git/
https://git.eclipse.org/r/www.eclipse.org/ebr.git/
https://git.eclipse.org/r/www.eclipse.org/ecd.git/
https://git.eclipse.org/r/www.eclipse.org/ecf.git/
https://git.eclipse.org/r/www.eclipse.org/eclemma.git/
https://git.eclipse.org/r/www.eclipse.org/eclipse.git/
https://git.eclipse.org/r/www.eclipse.org/eclipse.org-common.git/
https://git.eclipse.org/r/www.eclipse.org/eclipse/news.git/
https://git.eclipse.org/r/www.eclipse.org/eclipseide.git/
https://git.eclipse.org/r/www.eclipse.org/eclipselink.git/
https://git.eclipse.org/r/www.eclipse.org/eclipsescada.git/
https://git.eclipse.org/r/www.eclipse.org/ecoretools.git/
https://git.eclipse.org/r/www.eclipse.org/ecp.git/
https://git.eclipse.org/r/www.eclipse.org/edapt.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/batch.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/bean-validation.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/ca.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/cargotracker.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/cdi.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/cu.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/ejb.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/el.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/es.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/faces.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/glassfish.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/grizzly.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/interceptors.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jacc.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jaf.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jakartaee-examples.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jakartaee-platform.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jakartaee-stable.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jakartaee-tck.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jaspic.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jaxb-impl.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jaxb.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jaxrs.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jaxws.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jca.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jersey.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jms.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jpa.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jsonb.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jsonp.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jsp.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jstl.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/jta.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/krazo.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/mail.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/metro.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/mojarra.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/nosql.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/openmq.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/orb.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/servlet.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/soteria.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/tyrus.git/
https://git.eclipse.org/r/www.eclipse.org/ee4j/websocket.git/
https://git.eclipse.org/r/www.eclipse.org/eef.git/
https://git.eclipse.org/r/www.eclipse.org/efm.git/
https://git.eclipse.org/r/www.eclipse.org/efxclipse.git/
https://git.eclipse.org/r/www.eclipse.org/egerrit.git/
https://git.eclipse.org/r/www.eclipse.org/egf.git/
https://git.eclipse.org/r/www.eclipse.org/egit.git/
https://git.eclipse.org/r/www.eclipse.org/elk.git/