-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
2122 lines (1756 loc) · 191 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" class="html-fluid">
<head>
<meta charset="utf-8">
<link rel="dns-prefetch" href="https://github.githubassets.com">
<link rel="dns-prefetch" href="https://avatars.githubusercontent.com">
<link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com">
<link rel="dns-prefetch" href="https://user-images.githubusercontent.com/">
<link crossorigin="anonymous" media="all" integrity="sha512-rF3cnLJE5IkKUWFkw54emxUMV82DhbZ9aJun83zhvBgJ7J7ZXC20bEFVuLY9RRRC60Ig+pHQO57DuYBrYO+cAA==" rel="stylesheet" href="https://github.githubassets.com/assets/frameworks-ac5ddc9cb244e4890a516164c39e1e9b.css" />
<link crossorigin="anonymous" media="all" integrity="sha512-ENxwjJtCV/8MUXf3t2ExrwxL7iwpyewU4MYfDWzJ+WsNuuFRqB1CDjLpht25lslFppfDx5ryIFqDC8w0QlaOJg==" rel="stylesheet" href="https://github.githubassets.com/assets/site-10dc708c9b4257ff0c5177f7b76131af.css" />
<link crossorigin="anonymous" media="all" integrity="sha512-IP8IUyzJZjAJ349zQTobRXRjwX+GHTHbmghguDnKMs68GCxvf19ynnW4MKRSzavTurUQaQ/aSwuunDH/EWc2CA==" rel="stylesheet" href="https://github.githubassets.com/assets/behaviors-20ff08532cc9663009df8f73413a1b45.css" />
<link crossorigin="anonymous" media="all" integrity="sha512-5RMD3Zd82kRO0unotTahyeJ2GaJY7RUq08nbAEj116b97R5toR9AizoxpU7/BCH3xFkRd5LishMFenLjvB3fdQ==" rel="stylesheet" href="https://github.githubassets.com/assets/github-e51303dd977cda444ed2e9e8b536a1c9.css" />
<script crossorigin="anonymous" defer="defer" integrity="sha512-8K2vvwbW+6H27Nad5ydg8PA2/aMD/LKq+EiK9s0U0hhVZxCI2tWBsYk9beAtisRw2j+Or5k2/F+6dk02nmj/PA==" type="application/javascript" src="https://github.githubassets.com/assets/environment-f0adafbf.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-O0TQZiWal+S9WMeBKBXDxAljiL0X7eKiWQvBxFtW/cIv+oQYu518K4OUDJthO1vOmuaxbkLPfkw3q0b0A8QGVQ==" type="application/javascript" src="https://github.githubassets.com/assets/chunk-frameworks-3b44d066.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-ERl34tt3h9VgtVbHW6LdpHB2PTIAV820kUUD+2FB00I6zfAtUzSldGxDKDUNgnCZdmfYcJkYlUCYMmVAUYJomA==" type="application/javascript" src="https://github.githubassets.com/assets/chunk-vendor-111977e2.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-OEQeArFLWkb3Yqhjr/YpDWJw67Kj0brH44tvqNRLz4UwQkwqVVR74p+CWxzAkHQgQCwGI0S9UrftsvzY0U2SJQ==" type="application/javascript" src="https://github.githubassets.com/assets/behaviors-38441e02.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-IboH9NL3+O+Lawukto6QKYpZo9QXcqLTuYSR6qN9HjTXaD7uqCRQAOUJicPMDeNw/1J9CFaTG1FQjHT/00QnSw==" type="application/javascript" src="https://github.githubassets.com/assets/primer-21ba07f4.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-evfy6RyDyXvLuaEEFaUaIlw9dSRgvKkF3rMeUELkvXq7sGEK/43vTg+3EE6E8nOsjpuPyYQjgS8bxzqkTjlZag==" type="application/javascript" data-module-id="./chunk-contributions-spider-graph.js" data-src="https://github.githubassets.com/assets/chunk-contributions-spider-graph-7af7f2e9.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-obMR8mPKx8OvqRe34LgnUcxeJ1qujiA4ND3H6UX13ExMlA/WfHLjEzXRmgGRcRvN/8J1nzc+Z+jgz/PLTFy6zg==" type="application/javascript" data-module-id="./chunk-drag-drop.js" data-src="https://github.githubassets.com/assets/chunk-drag-drop-a1b311f2.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-cVnIoXzYnuz2SYwsbnuCpTFzvO17cPoQV2mK82+em//c8i7V2L0VEeInplXGgfbx4d8bQGQuPPx0P0BCRfJ37g==" type="application/javascript" data-module-id="./chunk-edit.js" data-src="https://github.githubassets.com/assets/chunk-edit-7159c8a1.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-TGnbT/6B5dxVwEk7iOlwSY9mfqhfq8m05ec+KjdlfEwoieq73iBeyidClQUSmFa2snukwzF9peY8c7FJf9FARA==" type="application/javascript" data-module-id="./chunk-emoji-picker-element.js" data-src="https://github.githubassets.com/assets/chunk-emoji-picker-element-4c69db4f.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-NwYkwzxETzKUYRXumHDsBIuggkh86KmJ1WrwWZW5wTvVPf047+wOmOHI5b4D65bfdtd3WbXJ7k+3ZWoxpIaqcA==" type="application/javascript" data-module-id="./chunk-insights-graph.js" data-src="https://github.githubassets.com/assets/chunk-insights-graph-370624c3.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-lZXOXZudAepk3cDCUaXXFSHEbf+OZELZeE9wapMMFCTQkJ6pWadz3EY84+VHTTBABaPtLPPLX71aFZY8RmPpDQ==" type="application/javascript" data-module-id="./chunk-jump-to.js" data-src="https://github.githubassets.com/assets/chunk-jump-to-9595ce5d.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-tcH4xCRuMBAh1PruDaiwGnRIbHlF6bGLhxyCQ16uqok1cV5QFMguVPWJtN9KI0jGQOgN+Pha3+uOUXhXdfK/qw==" type="application/javascript" data-module-id="./chunk-profile-pins-element.js" data-src="https://github.githubassets.com/assets/chunk-profile-pins-element-b5c1f8c4.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-E+H+wAtjiqutBvn2cnXzDIvmasIhYiS7i7JzOfFUwo+Ej8zT54OrJtP//RhwixnypgOpCF4JvqzYy6zOtORDmg==" type="application/javascript" data-module-id="./chunk-runner-groups.js" data-src="https://github.githubassets.com/assets/chunk-runner-groups-13e1fec0.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-U+Pp1bYuA3fRqhike5Go//O/vsExaZLz00lrIby+rZ88yf03nQHz3wLZR9paWkakpD7TH5nS6AUpabCc7OFWpg==" type="application/javascript" data-module-id="./chunk-sortable-behavior.js" data-src="https://github.githubassets.com/assets/chunk-sortable-behavior-53e3e9d5.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-cAsQOq53AtF8bCPWtKuMXOB2Jjt2089fKQQXtk1bNk2ZSBjx2yQOdGZWsXDfWG5H8FmjJzZsepBmOhy+wO7uAQ==" type="application/javascript" data-module-id="./chunk-toast.js" data-src="https://github.githubassets.com/assets/chunk-toast-700b103a.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-QBwrFY4kzAVN0nZmTYJLeEhi5bQ+42rE8h1g384XeZb7n62BykcUICACtaDQ473aIrRf38RSR7WDfNEIVuSlTA==" type="application/javascript" data-module-id="./chunk-tweetsodium.js" data-src="https://github.githubassets.com/assets/chunk-tweetsodium-401c2b15.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-8nRDQm5TNi0w14xLbeSNsfFrDb1VhUXLGA1f0CqODEhDhYuKYEmSET/IfHWycu+LDTB4OEHyHwBqsW9PBOUt1Q==" type="application/javascript" data-module-id="./chunk-user-status-submit.js" data-src="https://github.githubassets.com/assets/chunk-user-status-submit-f2744342.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-qFsShJX3EkHdcQq11CLfRk444sM6/0OBXB8eTN3FZl70HSy6jUPI2M9H6/wNWDwOR+LLU/JE55Y2kl1CK1QioQ==" type="application/javascript" src="https://github.githubassets.com/assets/unsupported-a85b1284.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-CdTAkPYiS4i7E1h5iAucIFObraMHke+nTbSI8z0gpLIZn0kcrckikm2nPY6YHnKVklr4tjWRi5VoCAEx0oSL/Q==" type="application/javascript" src="https://github.githubassets.com/assets/marketing-09d4c090.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-4OXWUGXK91CseqxDAxqRB3U21aUqYoI9nDo8vEj55PbzgfUTcQCvD9hApfiorTM2i9a5Y4C0IP5osL+/qO3/cw==" type="application/javascript" src="https://github.githubassets.com/assets/webgl-globe-e0e5d650.js"></script>
<meta name="viewport" content="width=device-width">
<title>GitHub: Where the world builds software · GitHub</title>
<meta name="description" content="GitHub is where over 56 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and features, power your CI/CD and DevOps workflows, and secure code before you commit it.">
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
<link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
<meta property="fb:app_id" content="1401488693436528">
<meta name="apple-itunes-app" content="app-id=1477376905" />
<meta name="twitter:image:src" content="https://github.githubassets.com/images/modules/site/social-cards/github-social.png" /><meta name="twitter:site" content="@github" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="GitHub: Where the world builds software" /><meta name="twitter:description" content="GitHub is where over 56 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat..." />
<meta property="og:image" content="https://github.githubassets.com/images/modules/site/social-cards/github-social.png" /><meta property="og:site_name" content="GitHub" /><meta property="og:type" content="object" /><meta property="og:title" content="GitHub: Where the world builds software" /><meta property="og:url" content="https://github.com/" /><meta property="og:description" content="GitHub is where over 56 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat..." />
<link rel="assets" href="https://github.githubassets.com/">
<meta name="request-id" content="BF84:7C63:34F31:3BC6F:602EDFC6" data-pjax-transient="true"/><meta name="html-safe-nonce" content="a4e29be2805301f8fe2d0bf32984a70870778c68918328f4e430c3cce4d01d34" data-pjax-transient="true"/><meta name="visitor-payload" content="eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCRjg0OjdDNjM6MzRGMzE6M0JDNkY6NjAyRURGQzYiLCJ2aXNpdG9yX2lkIjoiODM1NDIyMTQ1ODM1NDc5MDM0MiIsInJlZ2lvbl9lZGdlIjoiYXAtc291dGhlYXN0LTIiLCJyZWdpb25fcmVuZGVyIjoiYXAtc291dGhlYXN0LTIifQ==" data-pjax-transient="true"/><meta name="visitor-hmac" content="ff5c0b0cab3d8a711353e8291f131e580366ef8d79c247fd019deaa299a05f49" data-pjax-transient="true"/>
<meta name="page-subject" content="GitHub">
<meta name="github-keyboard-shortcuts" content="dashboards" data-pjax-transient="true" />
<meta name="selected-link" value="/" data-pjax-transient>
<meta name="google-site-verification" content="c1kuD-K2HIVF635lypcsWPoD4kilo5-jA_wBFyT4uMY">
<meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
<meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
<meta name="google-site-verification" content="GXs5KoUUkNCoaAZn7wPN-t01Pywp9M3sEjnt_3_ZWPc">
<meta name="octolytics-host" content="collector.githubapp.com" /><meta name="octolytics-app-id" content="github" /><meta name="octolytics-event-url" content="https://collector.githubapp.com/github-external/browser_event" />
<meta name="features-datafile" content="{"features":[{"name":"home_page_globe","enabled":true,"percentageOfActors":0,"actors":[]}]}" />
<!-- To prevent page flashing, the datafile features JS needs to be loaded in the
<head> tag before the DOM renders -->
<script crossorigin="anonymous" defer="defer" integrity="sha512-OZ0yFQoR1QzPRVXdtzW/1Uelirj8DFMLykLwtDmdwVJNK1Ddw/aseOs7a4n0/NN8GihLs0GoSW8ZhGKC8IzyZQ==" type="application/javascript" src="https://github.githubassets.com/assets/features-399d3215.js"></script>
<meta name="hostname" content="github.com">
<meta name="user-login" content="">
<meta name="expected-hostname" content="github.com">
<meta name="enabled-features" content="MARKETPLACE_PENDING_INSTALLATIONS,ACTIONS_SHORT_SHA_WARNING">
<meta http-equiv="x-pjax-version" content="2ccf0091213d533215fb6249ed2f63a7f8cfc43b3c9772cb0bbac2ae70d859bf">
<meta name="homepage-version-ga-dimension" content ="dimension11">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="620">
<link rel="preconnect" href="/webgl-globe/data/data.json" as="fetch" type="application/json">
<link rel="preload" href="/webgl-globe/data/data.json" as="fetch" type="application/json">
<link crossorigin="anonymous" media="all" integrity="sha512-ENxwjJtCV/8MUXf3t2ExrwxL7iwpyewU4MYfDWzJ+WsNuuFRqB1CDjLpht25lslFppfDx5ryIFqDC8w0QlaOJg==" rel="stylesheet" href="https://github.githubassets.com/assets/site-10dc708c9b4257ff0c5177f7b76131af.css" />
<link rel="canonical" href="https://github.com/" data-pjax-transient>
<meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
<meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
<meta name="browser-optimizely-client-errors-url" content="https://api.github.com/_private/browser/optimizely_client/errors">
<link rel="mask-icon" href="https://github.githubassets.com/pinned-octocat.svg" color="#000000">
<link rel="alternate icon" class="js-site-favicon" type="image/png" href="https://github.githubassets.com/favicons/favicon.png">
<link rel="icon" class="js-site-favicon" type="image/svg+xml" href="https://github.githubassets.com/favicons/favicon.svg">
<meta name="theme-color" content="#1e2327">
<link rel="manifest" href="/manifest.json" crossOrigin="use-credentials">
</head>
<body class="logged-out env-production page-responsive body-fluid header-overlay" style="word-wrap: break-word;">
<div class="position-relative js-header-wrapper ">
<a href="#start-of-content" class="px-2 py-4 bg-blue text-white show-on-focus js-skip-to-content">Skip to content</a>
<span class="progress-pjax-loader width-full js-pjax-loader-bar Progress position-fixed">
<span style="background-color: #79b8ff;width: 0%;" class="Progress-item progress-pjax-loader-bar "></span>
</span>
<div id="unsupported-browser" class="unsupported-browser" hidden>
<div class="container-xl p-responsive clearfix d-flex flex-items-center py-2">
<svg height="16" class="octicon octicon-alert mr-2 color-gray-7 hide-sm" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.22 1.754a.25.25 0 00-.44 0L1.698 13.132a.25.25 0 00.22.368h12.164a.25.25 0 00.22-.368L8.22 1.754zm-1.763-.707c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0114.082 15H1.918a1.75 1.75 0 01-1.543-2.575L6.457 1.047zM9 11a1 1 0 11-2 0 1 1 0 012 0zm-.25-5.25a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5z"></path></svg>
<div class="d-flex flex-auto flex-column flex-md-row">
<div class="flex-auto min-width-0 mr-2" style="padding-top:1px">
<span>GitHub no longer supports this web browser.</span>
<a href="https://docs.github.com/articles/supported-browsers">
Learn more about the browsers we support.
</a>
</div>
</div>
</div>
</div>
<header class="Header-old header-logged-out js-details-container Details position-relative f4 py-2" role="banner">
<div class="container-xl d-lg-flex flex-items-center p-responsive">
<div class="d-flex flex-justify-between flex-items-center">
<a class="mr-4" href="https://github.com/" aria-label="Homepage" data-ga-click="(Logged out) Header, go to homepage, icon:logo-wordmark">
<svg height="32" class="octicon octicon-mark-github text-white" viewBox="0 0 16 16" version="1.1" width="32" aria-hidden="true"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg>
</a>
<div class="d-lg-none css-truncate css-truncate-target width-fit p-2">
</div>
<div class="d-flex flex-items-center">
<a href="/join?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F&source=header-home"
class="d-inline-block d-lg-none f5 text-white no-underline border color-border-tertiary rounded-2 px-2 py-1 mr-3 mr-sm-5"
data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"site header","repository_id":null,"auth_type":"SIGN_UP","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="520d87e8f83281e6946b192f0f840552721c7fcba9b9c36d802e898a816314e2"
{"hydro-click"=>"{\"event_type\":\"analytics.click\",\"payload\":{\"category\":\"Sign up\",\"action\":\"click to sign up for account\",\"label\":\"ref_page:/;ref_cta:Sign up;ref_loc:header logged out\",\"originating_url\":\"https://github.com/\",\"user_id\":null}}", "hydro-click-hmac"=>"7b26178a12809e4b66ad5a74964be6db2d7bd628fbcb3bcb2e78f51fda31420e"}
>
Sign up
</a>
<button class="btn-link d-lg-none mt-1 js-details-target" type="button" aria-label="Toggle navigation" aria-expanded="false">
<svg height="24" class="octicon octicon-three-bars text-white" viewBox="0 0 16 16" version="1.1" width="24" aria-hidden="true"><path fill-rule="evenodd" d="M1 2.75A.75.75 0 011.75 2h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 2.75zm0 5A.75.75 0 011.75 7h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 7.75zM1.75 12a.75.75 0 100 1.5h12.5a.75.75 0 100-1.5H1.75z"></path></svg>
</button>
</div>
</div>
<div class="HeaderMenu HeaderMenu--logged-out position-fixed top-0 right-0 bottom-0 height-fit position-lg-relative d-lg-flex flex-justify-between flex-items-center flex-auto">
<div class="d-flex d-lg-none flex-justify-end border-bottom bg-gray-light p-3">
<button class="btn-link js-details-target" type="button" aria-label="Toggle navigation" aria-expanded="false">
<svg height="24" class="octicon octicon-x text-gray" viewBox="0 0 24 24" version="1.1" width="24" aria-hidden="true"><path fill-rule="evenodd" d="M5.72 5.72a.75.75 0 011.06 0L12 10.94l5.22-5.22a.75.75 0 111.06 1.06L13.06 12l5.22 5.22a.75.75 0 11-1.06 1.06L12 13.06l-5.22 5.22a.75.75 0 01-1.06-1.06L10.94 12 5.72 6.78a.75.75 0 010-1.06z"></path></svg>
</button>
</div>
<nav class="mt-0 px-3 px-lg-0 mb-5 mb-lg-0" aria-label="Global">
<ul class="d-lg-flex list-style-none">
<li class="d-block d-lg-flex flex-lg-nowrap flex-lg-items-center border-bottom border-lg-bottom-0 mr-0 mr-lg-3 edge-item-fix position-relative flex-wrap flex-justify-between d-flex flex-items-center ">
<details class="HeaderMenu-details details-overlay details-reset width-full">
<summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
Why GitHub?
<svg x="0px" y="0px" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative">
<path d="M1,1l6.2,6L13,1"></path>
</svg>
</summary>
<div class="dropdown-menu flex-auto rounded-1 bg-white px-0 mt-0 pb-4 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
<a href="/features" class="py-2 lh-condensed-ultra d-block link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Features">Features <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a>
<ul class="list-style-none f5 pb-3">
<li class="edge-item-fix"><a href="/mobile" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover">Mobile <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="/features/actions" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover">Actions <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="/features/codespaces" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover">Codespaces <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="/features/packages" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover">Packages <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="/features/security" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover">Security <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="/features/code-review/" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover">Code review <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="/features/project-management/" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover">Project management <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="/features/integrations" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover">Integrations <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
</ul>
<ul class="list-style-none mb-0 border-lg-top pt-lg-3">
<li class="edge-item-fix"><a href="/sponsors" class="py-2 lh-condensed-ultra d-block no-underline link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Sponsors">GitHub Sponsors <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="/customer-stories" class="py-2 lh-condensed-ultra d-block no-underline link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Customer stories">Customer stories <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="/security" class="py-2 lh-condensed-ultra d-block no-underline link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Security">Security <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
</ul>
</div>
</details>
</li>
<li class="border-bottom border-lg-bottom-0 mr-0 mr-lg-3">
<a href="/team" class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" data-ga-click="(Logged out) Header, go to Team">Team</a>
</li>
<li class="border-bottom border-lg-bottom-0 mr-0 mr-lg-3">
<a href="/enterprise" class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" data-ga-click="(Logged out) Header, go to Enterprise">Enterprise</a>
</li>
<li class="d-block d-lg-flex flex-lg-nowrap flex-lg-items-center border-bottom border-lg-bottom-0 mr-0 mr-lg-3 edge-item-fix position-relative flex-wrap flex-justify-between d-flex flex-items-center ">
<details class="HeaderMenu-details details-overlay details-reset width-full">
<summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
Explore
<svg x="0px" y="0px" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative">
<path d="M1,1l6.2,6L13,1"></path>
</svg>
</summary>
<div class="dropdown-menu flex-auto rounded-1 bg-white px-0 pt-2 pb-0 mt-0 pb-4 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
<ul class="list-style-none mb-3">
<li class="edge-item-fix"><a href="/explore" class="py-2 lh-condensed-ultra d-block link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Explore">Explore GitHub <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
</ul>
<h4 class="text-gray-light text-normal text-mono f5 mb-2 border-lg-top pt-lg-3">Learn & contribute</h4>
<ul class="list-style-none mb-3">
<li class="edge-item-fix"><a href="/topics" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Topics">Topics <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="/collections" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Collections">Collections <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="/trending" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Trending">Trending <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="https://lab.github.com/" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Learning lab">Learning Lab <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="https://opensource.guide" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Open source guides">Open source guides <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
</ul>
<h4 class="text-gray-light text-normal text-mono f5 mb-2 border-lg-top pt-lg-3">Connect with others</h4>
<ul class="list-style-none mb-0">
<li class="edge-item-fix"><a href="https://github.com/readme" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover">The ReadME Project <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="https://github.com/events" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Events">Events <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="https://github.community" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Community forum">Community forum <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="https://education.github.com" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to GitHub Education">GitHub Education <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="https://stars.github.com" class="py-2 pb-0 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to GitHub Stars Program">GitHub Stars program <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
</ul>
</div>
</details>
</li>
<li class="border-bottom border-lg-bottom-0 mr-0 mr-lg-3">
<a href="/marketplace" class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" data-ga-click="(Logged out) Header, go to Marketplace">Marketplace</a>
</li>
<li class="d-block d-lg-flex flex-lg-nowrap flex-lg-items-center border-bottom border-lg-bottom-0 mr-0 mr-lg-3 edge-item-fix position-relative flex-wrap flex-justify-between d-flex flex-items-center ">
<details class="HeaderMenu-details details-overlay details-reset width-full">
<summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
Pricing
<svg x="0px" y="0px" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative">
<path d="M1,1l6.2,6L13,1"></path>
</svg>
</summary>
<div class="dropdown-menu flex-auto rounded-1 bg-white px-0 pt-2 pb-4 mt-0 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
<a href="/pricing" class="pb-2 lh-condensed-ultra d-block link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Pricing">Plans <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a>
<ul class="list-style-none mb-3">
<li class="edge-item-fix"><a href="/pricing#feature-comparison" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Compare plans">Compare plans <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="https://enterprise.github.com/contact" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Contact Sales">Contact Sales <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
</ul>
<ul class="list-style-none mb-0 border-lg-top pt-lg-3">
<li class="edge-item-fix"><a href="/nonprofit" class="py-2 lh-condensed-ultra d-block no-underline link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Nonprofits">Nonprofit <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
<li class="edge-item-fix"><a href="https://education.github.com" class="py-2 pb-0 lh-condensed-ultra d-block no-underline link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Education">Education <span class="Bump-link-symbol float-right text-normal text-gray-light pr-3">→</span></a></li>
</ul>
</div>
</details>
</li>
</ul>
</nav>
<div class="d-lg-flex flex-items-center px-3 px-lg-0 text-center text-lg-left">
<div class="d-lg-flex mb-3 mb-lg-0">
<div class="header-search flex-auto js-site-search position-relative flex-self-stretch flex-md-self-auto mb-3 mb-md-0 mr-0 mr-md-3 js-jump-to"
role="combobox"
aria-owns="jump-to-results"
aria-label="Search or jump to"
aria-haspopup="listbox"
aria-expanded="false"
>
<div class="position-relative">
<!-- '"` --><!-- </textarea></xmp> --></option></form><form class="js-site-search-form" role="search" aria-label="Site" data-unscoped-search-url="/search" action="/search" accept-charset="UTF-8" method="get">
<label class="form-control input-sm header-search-wrapper p-0 js-chromeless-input-container header-search-wrapper-jump-to position-relative d-flex flex-justify-between flex-items-center">
<input type="text"
class="form-control input-sm header-search-input jump-to-field js-jump-to-field js-site-search-focus "
data-hotkey="s,/"
name="q"
value=""
placeholder="Search GitHub"
data-unscoped-placeholder="Search GitHub"
data-scoped-placeholder="Search"
autocapitalize="off"
aria-autocomplete="list"
aria-controls="jump-to-results"
aria-label="Search GitHub"
data-jump-to-suggestions-path="/_graphql/GetSuggestedNavigationDestinations"
spellcheck="false"
autocomplete="off"
>
<input type="hidden" data-csrf="true" class="js-data-jump-to-suggestions-path-csrf" value="eIMdG+cUlOMGVYqh7Jb1jtSmYRH13uI2Vs1dpgDbXVSvPHwKVYp+Co6PQYkfT1PtSnBRNhGwOjUmK5LOz9sL+g==" />
<input type="hidden" class="js-site-search-type-field" name="type" >
<img src="https://github.githubassets.com/images/search-key-slash.svg" alt="" class="mr-2 header-search-key-slash">
<div class="Box position-absolute overflow-hidden d-none jump-to-suggestions js-jump-to-suggestions-container">
<ul class="d-none js-jump-to-suggestions-template-container">
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-suggestion" role="option">
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="suggestion">
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
<svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
<svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
<svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
</div>
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
</div>
<div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in all of GitHub">
Search
</span>
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
All GitHub
</span>
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
Jump to
<span class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
</a>
</li>
</ul>
<ul class="d-none js-jump-to-no-results-template-container">
<li class="d-flex flex-justify-center flex-items-center f5 d-none js-jump-to-suggestion p-2">
<span class="text-gray">No suggested jump to results</span>
</li>
</ul>
<ul id="jump-to-results" role="listbox" class="p-0 m-0 js-navigation-container jump-to-suggestions-results-container js-jump-to-suggestions-results-container">
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-scoped-search d-none" role="option">
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="scoped_search">
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
<svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
<svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
<svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
</div>
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
</div>
<div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in all of GitHub">
Search
</span>
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
All GitHub
</span>
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
Jump to
<span class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
</a>
</li>
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-owner-scoped-search d-none" role="option">
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="owner_scoped_search">
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
<svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
<svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
<svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
</div>
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
</div>
<div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in all of GitHub">
Search
</span>
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
All GitHub
</span>
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
Jump to
<span class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
</a>
</li>
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-global-search d-none" role="option">
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="" data-item-type="global_search">
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
<svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z"></path></svg>
<svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M1.75 0A1.75 1.75 0 000 1.75v12.5C0 15.216.784 16 1.75 16h12.5A1.75 1.75 0 0016 14.25V1.75A1.75 1.75 0 0014.25 0H1.75zM1.5 1.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v12.5a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25V1.75zM11.75 3a.75.75 0 00-.75.75v7.5a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75zm-8.25.75a.75.75 0 011.5 0v5.5a.75.75 0 01-1.5 0v-5.5zM8 3a.75.75 0 00-.75.75v3.5a.75.75 0 001.5 0v-3.5A.75.75 0 008 3z"></path></svg>
<svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M11.5 7a4.499 4.499 0 11-8.998 0A4.499 4.499 0 0111.5 7zm-.82 4.74a6 6 0 111.06-1.06l3.04 3.04a.75.75 0 11-1.06 1.06l-3.04-3.04z"></path></svg>
</div>
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
</div>
<div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in all of GitHub">
Search
</span>
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
All GitHub
</span>
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
Jump to
<span class="d-inline-block ml-1 v-align-middle">↵</span>
</div>
</a>
</li>
</ul>
</div>
</label>
</form> </div>
</div>
</div>
<a href="/login"
class="HeaderMenu-link no-underline mr-3"
data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"site header menu","repository_id":null,"auth_type":"SIGN_UP","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="cd4f672ed9a2fa51ea92c28de162e81edb2d11a2aad6884ec89a6d60b21b1cfb"
data-ga-click="(Logged out) Header, clicked Sign in, text:sign-in">
Sign in
</a>
<a href="/join?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F&source=header-home"
class="HeaderMenu-link d-inline-block no-underline border color-border-tertiary rounded-1 px-2 py-1"
data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"site header menu","repository_id":null,"auth_type":"SIGN_UP","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="cd4f672ed9a2fa51ea92c28de162e81edb2d11a2aad6884ec89a6d60b21b1cfb"
data-hydro-click="{"event_type":"analytics.click","payload":{"category":"Sign up","action":"click to sign up for account","label":"ref_page:/;ref_cta:Sign up;ref_loc:header logged out","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="7b26178a12809e4b66ad5a74964be6db2d7bd628fbcb3bcb2e78f51fda31420e"
>
Sign up
</a>
</div>
</div>
</div>
</header>
</div>
<div id="start-of-content" class="show-on-focus"></div>
<div data-pjax-replace id="js-flash-container">
<template class="js-flash-template">
<div class="flash flash-full {{ className }}">
<div class=" px-2" >
<button class="flash-close js-flash-close" type="button" aria-label="Dismiss this message">
<svg class="octicon octicon-x" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
</button>
<div>{{ message }}</div>
</div>
</div>
</template>
</div>
<include-fragment class="js-notification-shelf-include-fragment" data-base-src="https://github.com/notifications/beta/shelf"></include-fragment>
<div
class="application-main "
data-commit-hovercards-enabled
data-discussion-hovercards-enabled
data-issue-and-pr-hovercards-enabled
>
<main>
<div class="font-mktg">
<div class="overflow-hidden">
<div class="home-hero-container position-relative js-webgl-globe-data">
<div class="home-hero position-absolute z-1 top-0 right-0 bottom-0 left-0 overflow-hidden">
<div class="d-flex flex-column flex-justify-between mx-auto container-xl p-responsive-fluid height-full pb-md-9-fluid">
<div class="d-flex gutter-fluid gutter-spacious-fluid flex-column flex-lg-row flex-items-center height-full px-0-fluid px-lg-3-fluid">
<div class="ml-md-n3 mr-md-3 col-12 col-lg-6 text-center text-md-left">
<h1 class="h2-5-mktg-fluid h1-sm-mktg-fluid h0-lg-mktg-fluid text-white mb-3-fluid position-relative z-2">Where the world<br class="d-block d-lg-none"> builds software</h1>
<p class="f4-mktg-fluid f2-sm-mktg-fluid text-gray-light-mktg mr-lg-n4-fluid mb-4-fluid lh-condensed lh-sm-default position-relative z-2">Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.</p>
<!-- '"` --><!-- </textarea></xmp> --></option></form><form class="mx-auto mx-md-0 col-5-max js-signup-form position-relative z-2" autocomplete="off" action="/join" accept-charset="UTF-8" method="post"><input type="hidden" data-csrf="true" name="authenticity_token" value="WB82knrv5s03lMEjDX1nW+NrAuu9fas1u0X/j6hEeixc0kUtpG1lD3uFJXxyZ7uCfFHE0uk4+WK3K9dBVyKflg==" /> <div class="d-flex flex-column flex-sm-row flex-items-center">
<dl class="col-12 my-0 pr-0-fluid pb-2-fluid pr-sm-2-fluid pb-sm-0-fluid flex-auto">
<dt>
<label for="user_email" class="sr-only">Email address</label>
</dt>
<dd>
<input class="form-control border-0 f4-mktg-fluid py-3-fluid px-4-fluid width-full" style="height: 3rem" placeholder="Email address" type="email" name="user_email" id="user_email" autocomplete="off" spellcheck="false">
</dd>
</dl>
<input type="hidden" name="source" class="js-signup-source" value="form-home-signup" data-ga-label=";ref_page:/;ref_cta:Sign up for GitHub;ref_loc:hero launchpad;">
<button
class="btn-mktg-fluid btn-green-mktg-fluid width-full width-sm-auto"
type="submit"
data-hydro-click="{"event_type":"analytics.click","payload":{"category":"Sign up","action":"click to sign up for account","label":"ref_page:/;ref_cta:Sign up for GitHub;ref_loc:hero launchpad","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="b38aa25680a3c64f5dc676819924fad87d4e7cacb89fe683ad3dc953d55489a7"
>
Sign up for GitHub
</button>
</div>
</form>
<div class="position-lg-absolute bottom-lg-8 left-lg-0 right-lg-0 mt-4-fluid z-1 position-relative">
<div class="container-xl mx-auto px-lg-3-fluid">
<div class="py-4-fluid" style="border-top: 1px solid rgba(255,255,255,0.1)">
<div class="d-flex gutter-condensed-fluid gutter-md-spacious-fluid col-12 col-lg-8 flex-justify-between text-md-left">
<div class="col-6 col-sm-4 col-md-3">
<h2 class="h5-mktg-fluid text-mono text-white text-normal no-wrap">56<span class="text-white-fade">+</span> million</h2>
<p class="m-0 text-mono text-white-fade f6-mktg-fluid">Developers</p>
</div>
<div class="col-6 col-sm-4 col-md-3">
<h2 class="h5-mktg-fluid text-mono text-white text-normal no-wrap">3<span class="text-white-fade">+</span> million</h2>
<p class="m-0 text-mono text-white-fade f6-mktg-fluid">Organizations</p>
</div>
<div class="col-sm-4 col-md-3 d-none d-md-block">
<h2 class="h5-mktg-fluid text-mono text-white text-normal no-wrap">100<span class="text-white-fade">+</span> million</h2>
<p class="m-0 text-mono text-white-fade f6-mktg-fluid">Repositories</p>
</div>
<div class="col-3 d-none d-sm-block">
<h3 class="h5-mktg-fluid text-mono text-white text-normal no-wrap">72%</h3>
<p class="m-0 text-mono text-white-fade f6-mktg-fluid">Fortune 50</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-lg-6 text-center text-md-left position-relative">
<div
class="home-globe-container home-globe-container-webgl"
data-feature="home_page_globe"
data-show-when-feature-enabled="true"
hidden
data-feature-hydro="{"event_type":"feature_flag_decision","payload":{"feature":"home_page_globe","originating_url":"https://github.com/","user_id":null}}" data-feature-hydro-hmac="be0cbc7da2f32edf891ea5670441a984e859ce28aaba3fb91263d03f7c5a368d"
>
<div class="mx-auto width-full mt-n9-fluid mt-lg-2-fluid home-globe position-relative height-full js-webgl-globe">
<video width="916" height="918" loop muted playsinline preload="none" class="home-globe-container-video js-globe-fallback-video " hidden>
<source type="video/mp4; codecs=hevc,mp4a.40.2" src="https://github.githubassets.com/images/modules/site/home/globe-900.hevc.mp4">
<source type="video/mp4; codecs=avc1.4D401E,mp4a.40.2" src="https://github.githubassets.com/images/modules/site/home/globe-900.h264.mp4">
</video>
<video loop muted playsinline preload="none" class="home-globe-container-video js-globe-fallback-video-small" hidden>
<source type="video/mp4; codecs=hevc,mp4a.40.2" src="https://github.githubassets.com/images/modules/site/home/globe-500.hevc.mp4">
<source type="video/mp4; codecs=avc1.4D401E,mp4a.40.2" src="https://github.githubassets.com/images/modules/site/home/globe-500.h264.mp4">
</video>
<img
srcset="https://github.githubassets.com/images/modules/site/home/globe-700.jpg 700w,
https://github.githubassets.com/images/modules/site/home/globe.jpg 1400w"
sizes="(max-width: 700px) 70vw, 700px"
src="https://github.githubassets.com/images/modules/site/home/globe.jpg"
alt="Planet earth with visualization of GitHub activity crossing the globe"
class="width-full js-globe-fallback-image"
loading="lazy"
hidden
>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" height="704" viewBox="0 0 704 704" width="704" class="js-webgl-globe-loading position-absolute left-0 right-0 top-0 bottom-0" style="margin: auto; transform: scale(0.8)"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="560" width="560" x="70" y="70"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"></feBlend><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dx="2" dy="2"></feOffset><feGaussianBlur stdDeviation="7.5"></feGaussianBlur><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0.447059 0 0 0 0 0.643137 0 0 0 0 0.988235 0 0 0 0.49 0"></feColorMatrix><feBlend in2="shape" mode="normal" result="effect1_innerShadow"></feBlend><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dx="1" dy="1"></feOffset><feGaussianBlur stdDeviation="3"></feGaussianBlur><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0.625 0 0 0 0 0.9325 0 0 0 0 1 0 0 0 0.32 0"></feColorMatrix><feBlend in2="effect1_innerShadow" mode="normal" result="effect2_innerShadow"></feBlend><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dx="-10" dy="-10"></feOffset><feGaussianBlur stdDeviation="3"></feGaussianBlur><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend in2="effect2_innerShadow" mode="normal" result="effect3_innerShadow"></feBlend></filter><radialGradient id="b" cx="0" cy="0" gradientTransform="matrix(-199.20400108 -199.20400108 199.20400108 -199.20400108 332.08 338.37)" gradientUnits="userSpaceOnUse" r="1"><stop offset=".875" stop-color="#fff"></stop><stop offset=".937507" stop-color="#3e68ff"></stop><stop offset="1" stop-color="#03009f" stop-opacity="0"></stop></radialGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="352" x2="352" y1="331" y2="628"><stop offset="0" stop-color="#06060e"></stop><stop offset="1" stop-color="#0f0e20"></stop></linearGradient><radialGradient id="d" cx="0" cy="0" gradientTransform="matrix(-5.99972278 523.99965313 -523.99965313 -5.99972278 170 147)" gradientUnits="userSpaceOnUse" r="1"><stop offset="0" stop-color="#4b60fb"></stop><stop offset=".565687" stop-color="#33205d"></stop><stop offset="1" stop-color="#33205d" stop-opacity="0"></stop></radialGradient><radialGradient id="e" cx="0" cy="0" gradientTransform="matrix(41.99992987 206.0000547 -206.0000547 41.99992987 292 327)" gradientUnits="userSpaceOnUse" r="1"><stop offset="0" stop-color="#354097"></stop><stop offset="1" stop-color="#243273" stop-opacity="0"></stop></radialGradient><radialGradient id="f" cx="0" cy="0" gradientTransform="matrix(-84.00137423 185.99914213 -185.99914213 -84.00137423 462 399)" gradientUnits="userSpaceOnUse" r="1"><stop offset="0" stop-color="#040d20"></stop><stop offset="1" stop-color="#040d20" stop-opacity="0"></stop></radialGradient><circle cx="352" cy="352" fill="url(#b)" r="303" transform="matrix(.98453041 .1752138 -.1752138 .98453041 67.120553 -56.22996)"></circle><g filter="url(#a)"><circle cx="352" cy="352" fill="url(#c)" r="276"></circle><circle cx="352" cy="352" fill="url(#d)" r="276"></circle><circle cx="352" cy="352" fill="url(#e)" r="276"></circle><circle cx="352" cy="352" fill="url(#f)" r="276"></circle></g></svg>
</div>
</div>
<div
class="home-globe-container"
data-feature="home_page_globe"
data-show-when-feature-enabled="false"
hidden
>
<div class="mx-auto width-full mt-n9-fluid mt-lg-2-fluid home-globe position-relative height-full">
<img
srcset="https://github.githubassets.com/images/modules/site/home/globe-700.jpg 700w,
https://github.githubassets.com/images/modules/site/home/globe.jpg 1400w"
sizes="(max-width: 700px) 70vw, 700px"
src="https://github.githubassets.com/images/modules/site/home/globe.jpg"
alt="Planet earth with visualization of GitHub activity crossing the globe"
class="width-full js-globe-fallback-image"
loading="lazy"
decoding="async"
>
</div>
</div>
</div>
</div>
</div>
<img src="https://github.githubassets.com/images/modules/site/home/hero-glow.svg" alt="Glowing universe" class="position-absolute home-hero-glow events-none z-1">
<video loop muted playsinline preload="none" class="js-globe-aurora position-absolute top-0 left-0 right-0 bottom-0" style="margin: auto; z-index: -1; min-width: 100%; min-height: 100%;" hidden>
<source type="video/mp4; codecs=avc1.4D401E,mp4a.40.2" src="https://github.githubassets.com/images/modules/site/home/aurora.h264.mp4">
</video>
</div>
<div class="position-absolute width-full bg-white" style="bottom: -4rem;">
<div class="container-xl p-responsive-fluid">
<div class="d-flex flex-justify-center flex-lg-justify-end bg-white">
<div class="col-8 col-sm-7 col-md-6 col-lg-5 position-relative z-2 right-lg-n12 events-none">
<picture>
<source srcset="https://github.githubassets.com/images/modules/site/home/astro-mona.webp" type="image/webp">
<img src="https://github.githubassets.com/images/modules/site/home/astro-mona.svg" width="960" height="967" class="home-astro-mona width-full position-absolute bottom-0 height-auto" alt="Mona looking at GitHub activity across the globe">
</picture>
</div>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" preserveAspectRatio="none" viewBox="0 0 1680 40" class="position-absolute width-full z-1" style="bottom: -1px;"><path d="M0 40h1680V30S1340 0 840 0 0 30 0 30z" fill="#fff"></path></svg>
</div>
<div class="overflow-hidden">
<div class="mx-auto container-xl p-responsive-fluid py-9-fluid">
<div class="d-flex gutter-fluid gutter-spacious-fluid js-build-in-trigger" data-build-margin-bottom="20">
<div class="col-10-max mx-auto">
<div class="js-build-in-item build-in-scale-fade bg-white rounded-2-fluid box-shadow-card-border-mktg overflow-hidden">
<div class="d-flex position-relative">
<div class="col-5-max mx-auto mx-md-0">
<div class="col-12 col-md-9 px-4-fluid pl-md-7-fluid pt-4-fluid py-md-6-fluid mb-md-0-fluid position-relative z-1 text-center text-md-left bg-white" style="margin-bottom: 25%; box-shadow: 0 0 50px 30px #fff">
<h2 class="h4-mktg-fluid mb-1-fluid mx-auto mx-md-0" style="max-width: 310px;"><span class="text-gray-mktg">Build like the best with</span> <span class="no-wrap">GitHub Enterprise</span></h2>
<p class="f5-mktg-fluid text-gray-mktg mx-auto mx-md-0" style="max-width: 380px;">Take collaboration to the next level with security and administrative features built for teams.</p>
<a
href="https://enterprise.github.com/contact?ref_page=/&ref_cta=Contact%20Sales&ref_loc=billboard%20launchpad"
class="btn-mktg-fluid btn-outline-mktg-fluid f5-mktg-fluid Bump-link"
data-ga-click="Contact Sales, click to Contact Sales, ref_page:/;ref_cta:Contact Sales;ref_loc:billboard launchpad"
>
Contact Sales <span class="Bump-link-symbol"><svg class="octicon" height="16" viewBox="0 0 16 16" width="16"><path clip-rule="evenodd" d="m8.21967 2.96967c.29289-.29289.76777-.29289 1.06066 0l4.24997 4.25c.2929.29289.2929.76777 0 1.06066l-4.24997 4.24997c-.29289.2929-.76777.2929-1.06066 0s-.29289-.7677 0-1.0606l2.96963-2.9697h-7.4393c-.41421 0-.75-.33579-.75-.75s.33579-.75.75-.75h7.4393l-2.96963-2.96967c-.29289-.29289-.29289-.76777 0-1.06066z" fill-rule="evenodd"></path></svg>
</span>
</a>
</div>
</div>
<div class="col-12 col-md-8 position-absolute text-right position-relative height-full right-0">
<picture>
<source srcset="https://github.githubassets.com/images/modules/site/home/enterprise-city-w-logos.webp" type="image/webp">
<img src="https://github.githubassets.com/images/modules/site/home/enterprise-city-w-logos.jpg" class="width-full position-absolute right-0 bottom-0" alt="Futuristic city scape" loading="lazy">
</picture>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="position-relative pt-5-fluid mt-5-fluid">
<div class="position-absolute left-0 width-full height-full js-build-in-trigger" data-build-margin-bottom="100" data-build-threshold="0" style="top: -2rem;">
<div class="mb-4-fluid top-0 home-nav-outer js-build-in-item width-full z-3">
<div class="home-nav width-full js-toggler-container">
<div class="home-nav-bg position-fixed top-0 left-0 width-full height-full z-n1 bg-gray-dark js-toggler-target-off" style="opacity: 0.8"></div>
<div class="px-md-4-fluid py-2-fluid bg-white">
<div class="home-nav-container mx-auto col-10-max d-flex flex-justify-between">
<button type="button" class="home-nav-trigger text-left js-toggler-target d-inline-block d-md-none py-2-fluid px-3-fluid" aria-label="Toggle page navigation">
<svg class="octicon octicon-three-bars text-gray-dark replaced text-gray-dark" viewBox="0 0 16 16" height="24"><path clip-rule="evenodd" d="m1 2.75c0-.19891.07902-.38968.21967-.53033s.33142-.21967.53033-.21967h12.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-12.5c-.19891 0-.38968-.07902-.53033-.21967s-.21967-.33142-.21967-.53033zm0 5c0-.19891.07902-.38968.21967-.53033s.33142-.21967.53033-.21967h12.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-12.5c-.19891 0-.38968-.07902-.53033-.21967s-.21967-.33142-.21967-.53033zm.75 4.25c-.19891 0-.38968.079-.53033.2197-.14065.1406-.21967.3314-.21967.5303s.07902.3897.21967.5303c.14065.1407.33142.2197.53033.2197h12.5c.1989 0 .3897-.079.5303-.2197.1407-.1406.2197-.3314.2197-.5303s-.079-.3897-.2197-.5303c-.1406-.1407-.3314-.2197-.5303-.2197z" fill-rule="evenodd"></path></svg>
<svg class="octicon octicon-x text-gray-dark" height="24" viewBox="0 0 24 24" width="16"><path clip-rule="evenodd" d="m6.21967 6.21967c.29289-.29289.76777-.29289 1.06066 0l4.71967 4.71963 4.7197-4.71963c.2929-.29289.7677-.29289 1.0606 0s.2929.76777 0 1.06066l-4.7196 4.71967 4.7196 4.7197c.2929.2929.2929.7677 0 1.0606s-.7677.2929-1.0606 0l-4.7197-4.7196-4.71967 4.7196c-.29289.2929-.76777.2929-1.06066 0s-.29289-.7677 0-1.0606l4.71963-4.7197-4.71963-4.71967c-.29289-.29289-.29289-.76777 0-1.06066z" fill-rule="evenodd"></path></svg>
</button>
<div class="home-nav-links-container d-flex flex-auto flex-md-items-center">
<nav class="home-nav-links col-12 col-md-9 d-flex flex-auto flex-nowrap flex-justify-start flex-md-justify-between" aria-label="GitHub homepage page navigation">
<a href="#home-code" class="home-nav-item js-toggler-target-off text-mono f4-mktg-fluid text-gray-light no-underline js-scrollnav-item js-smoothscroll-anchor" data-ga-click="Home, click to scroll to content, ref_cta:Code;ref_loc:navigation launchpad;">
Code
</a>
<a href="#home-collaborate" class="home-nav-item js-toggler-target-off text-mono f4-mktg-fluid text-gray-light no-underline js-scrollnav-item js-smoothscroll-anchor" data-ga-click="Home, click to scroll to content, ref_cta:Collaborate;ref_loc:navigation launchpad;">
Collaborate
</a>
<a href="#home-develop" class="home-nav-item js-toggler-target-off text-mono f4-mktg-fluid text-gray-light no-underline js-scrollnav-item js-smoothscroll-anchor" data-ga-click="Home, click to scroll to content, ref_cta:Develop;ref_loc:navigation launchpad;">
Develop
</a>
<a href="#home-automate" class="home-nav-item js-toggler-target-off text-mono f4-mktg-fluid text-gray-light no-underline js-scrollnav-item js-smoothscroll-anchor" data-ga-click="Home, click to scroll to content, ref_cta:Automate;ref_loc:navigation launchpad;">
Automate
</a>
<a href="#home-secure" class="home-nav-item js-toggler-target-off text-mono f4-mktg-fluid text-gray-light no-underline js-scrollnav-item js-smoothscroll-anchor" data-ga-click="Home, click to scroll to content, ref_cta:Secure;ref_loc:navigation launchpad;">
Secure
</a>
<a href="#home-community" class="home-nav-item js-toggler-target-off text-mono f4-mktg-fluid text-gray-light no-underline js-scrollnav-item js-smoothscroll-anchor" data-ga-click="Home, click to scroll to content, ref_cta:Community;ref_loc:navigation launchpad;">
Community
</a>
</nav>
<div class="home-nav-hidden rounded-2-fluid text-right flex-shrink-0">
<a class="btn-mktg-fluid btn-sm-mktg-fluid btn-green-mktg-fluid px-lg-4-fluid px-3-fluid width-full width-md-auto btn-block" hydro-click="{"event_type":"analytics.click","payload":{"category":"Sign up","action":"click to sign up for account","label":"ref_page:/;ref_cta:Sign up for GitHub;ref_loc:navigation launchpad;","originating_url":"https://github.com/","user_id":null}}" hydro-click-hmac="955f6a4d22ea7702241f7c80e4e8b33e0b0009665ebf55bfd83b819dd1057e7d" href="/join?ref_cta=Sign+up&ref_loc=navigation+launchpad&ref_page=%2F">Sign up</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="overflow-hidden">
<div class="position-relative z-2 mx-auto box-shadow-default-mktg wide-block js-section" id="home-code">
<div class="container-xl p-responsive-fluid">
<div class="d-flex flex-column gutter-fluid gutter-spacious-fluid">
<div class="col-12 col-sm-10 offset-sm-1">
<div class="col-6-max">
<h2 class="h2-5-mktg-fluid h1-md-mktg-fluid text-white mb-6-fluid mb-md-8-fluid text-gradient-mint-blue-dark">Give your code a<br class="d-none d-sm-block"> home in the cloud</h2>
</div>
</div>
<div class="col-11 col-sm-10 offset-1">
<ul class="home-git-log-dark d-flex gutter-fluid gutter-spacious-fluid flex-column list-style-none pb-5-fluid">
<li class="col-12 col-md-9 col-lg-6 mt-n3-fluid pb-4-fluid">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="28" viewBox="0 0 28 20" width="28" class="home-git-icon home-git-item float-left mr-n6-fluid position-relative z-1"><circle cx="14" cy="10" fill="#fff" r="5" stroke="#d0d6df" stroke-width="2"></circle></svg>
<h3 class="h5-mktg-fluid h4-sm-mktg-fluid text-gray-light-mktg lh-condensed text-semibold-mktg text-semibold-mktg mb-3-fluid">Record or rewind any change to your code to keep you and your team in sync. <span class="text-white">Host it all for free with unlimited public and private repositories.</span></h3>
<a
href="/join"
class="btn-mktg-fluid btn-invisible-mktg-fluid Bump-link mb-2-fluid mb-lg-0 text-white text-underline"
data-hydro-click="{"event_type":"analytics.click","payload":{"category":"Sign up","action":"click to sign up for account","label":"ref_page:/;ref_cta:Sign up for GitHub;ref_loc:code launchpad","originating_url":"https://github.com/","user_id":null}}" data-hydro-click-hmac="cadf3af909854d40a4b16b167fcfa747c4f13078dfb7c5651e88fd845d94f626"
>
Sign up for GitHub <span class="Bump-link-symbol"><svg class="octicon" height="16" viewBox="0 0 16 16" width="16"><path clip-rule="evenodd" d="m8.21967 2.96967c.29289-.29289.76777-.29289 1.06066 0l4.24997 4.25c.2929.29289.2929.76777 0 1.06066l-4.24997 4.24997c-.29289.2929-.76777.2929-1.06066 0s-.29289-.7677 0-1.0606l2.96963-2.9697h-7.4393c-.41421 0-.75-.33579-.75-.75s.33579-.75.75-.75h7.4393l-2.96963-2.96967c-.29289-.29289-.29289-.76777 0-1.06066z" fill-rule="evenodd"></path></svg>
</span>
</a>
</li>
<li class="col-12 d-flex flex-items-center position-relative f5-mktg-fluid text-gray-light-mktg py-2-fluid unselectable" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 32" class="home-git-icon home-git-item flex-shrink-0 mr-3-fluid position-relative z-1" height="32" width="28"><g fill="#fff"><path d="m17.8 24.4h-11c-.6 0-1.1-.5-1.1-1.1v-1.3c0-.8.6-1.4 1.4-1.4h7.2c.5 0 .9-.4.9-.9s-.4-.9-.9-.9h-7.3c-.5 0-.9.1-1.4.3v-12.3c0-.6.5-1.1 1.1-1.1h13.6v6.9c0 .5.4.9.9.9s.9-.4.9-.9v-7.8c0-.5-.4-.9-.9-.9h-14.4c-1.6 0-2.9 1.3-2.9 2.9v16.5c0 1.6 1.3 2.9 2.9 2.9h11c.5 0 .9-.4.9-.9s-.5-.9-.9-.9z"></path><path d="m25.4 19.2-3.5-3.8c-.3-.4-.9-.4-1.3 0l-3.5 3.8c-.2.2-.2.4-.2.6s.1.4.3.6.4.3.6.2c.2 0 .4-.1.6-.3l2-2.1v9c0 .5.4.9.9.9s.9-.4.9-.9v-9l2 2.1c.2.2.4.3.6.3s.5-.1.6-.2c.2-.2.3-.4.3-.6-.1-.3-.2-.5-.3-.6z"></path></g></svg>
<span class="text-truncate"><strong class="text-bold text-white">jasonetco</strong> added some commits 8 minutes ago</span>
</li>
<li class="col-12 d-flex flex-items-center position-relative f6-mktg-fluid text-mono text-gray-light-mktg py-2-fluid unselectable" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="22" width="28" class="home-git-icon home-git-item flex-shrink-0 mr-3-fluid position-relative z-1"><path d="m2.5 10a1 1 0 1 0 0 2zm23 2a1 1 0 1 0 0-2zm-23 0h23v-2h-23z" fill="#465061"></path><circle cx="14" cy="11" fill="#041027" r="5" stroke="#465061" stroke-width="2"></circle></svg>
<img src="https://avatars.githubusercontent.com/jasonetco?v=4" class="d-none d-sm-block flex-shrink-0 opacity-4 avatar avatar-4 mr-3-fluid circle bg-gray" alt="@jasonetco" decoding="async">
<span class="opacity-4 text-truncate">Updated README.md</span>
</li>
</ul>
</div>
<div class="col-12 position-relative">
<div class="home-repo-comp position-relative py-3-fluid">
<div class="position-relative z-2 js-build-in build-in-scale-fade js-build-in-trigger js-type-in-trigger">
<div class="home-repo-comp-browser rounded-2-fluid box-shadow-default-mktg position-absolute z-1 top-0 left-0 right-0 box-shadow-active-border-light-mktg js-build-in-item" style="font-size: 0;">
<picture>
<source srcset="https://github.githubassets.com/images/modules/site/home/repo-browser.webp" type="image/webp">
<img src="https://github.githubassets.com/images/modules/site/home/repo-browser.png" class="width-full" alt="The resulting GitHub repository page from pushing" decoding="async">
</picture>
</div>
<div class="home-repo-editor rounded-2-fluid position-relative mr-n1 ml-n1 mr-md-0 ml-md-0 overflow-hidden js-build-in-item">
<div class="d-flex position-absolute top-0 right-0 bottom-0 left-0 home-repo-editor-ui js-build-in-item">
<div class="col-3 d-none d-lg-block">
<div class="d-flex home-repo-editor-filetree height-full flex-column py-2-fluid">
<div class="d-flex py-1-fluid px-3-fluid">
<img src="https://github.githubassets.com/images/modules/site/home/icons/folder.svg" alt="File icon" class="mr-1-fluid" loading="lazy">
<div>octocat-classifier</div>
</div>
<div class="d-flex py-1-fluid px-4-fluid">
<img src="https://github.githubassets.com/images/modules/site/home/icons/folder.svg" alt="File icon" class="mr-1-fluid" loading="lazy">
<div>assets</div>
</div>
<div class="opacity-4 d-flex py-1-fluid px-4-fluid">
<img src="https://github.githubassets.com/images/modules/site/home/icons/folder.svg" alt="File icon" class="mr-1-fluid" loading="lazy">
<div>tests</div>
</div>
<div class="d-flex py-1-fluid px-3-fluid">
<img src="https://github.githubassets.com/images/modules/site/home/icons/file.svg" alt="File icon" class="mr-1-fluid" loading="lazy">
<div>LICENSE</div>
</div>
<div class="d-flex py-1-fluid px-3-fluid">
<img src="https://github.githubassets.com/images/modules/site/home/icons/file.svg" alt="File icon" class="mr-1-fluid" loading="lazy">
<div>README.md</div>
</div>
<div class="d-flex py-1-fluid px-3-fluid">
<img src="https://github.githubassets.com/images/modules/site/home/icons/file.svg" alt="File icon" class="mr-1-fluid" loading="lazy">
<div>index.js</div>
</div>
<div class="d-flex py-1-fluid px-3-fluid">
<img src="https://github.githubassets.com/images/modules/site/home/icons/file.svg" alt="File icon" class="mr-1-fluid" loading="lazy">
<div>package.json</div>
</div>
</div>
</div>
<div class="col-12 col-lg-9 position-relative">
<div class="d-flex home-repo-editor-tabs">
<div class="home-repo-editor-tab--active text-white d-flex flex-items-center">
<img src="https://github.githubassets.com/images/modules/site/home/icons/file.svg" alt="File icon" class="mr-1-fluid" loading="lazy">
<div>README.md</div>
</div>
<div class="d-lg-none home-repo-editor-tab opacity-4 d-flex flex-items-center">
<img src="https://github.githubassets.com/images/modules/site/home/icons/file.svg" alt="File icon" class="mr-1-fluid" loading="lazy">
<div>app.js</div>
</div>
<div class="d-lg-none home-repo-editor-tab opacity-4 d-flex flex-items-center">
<img src="https://github.githubassets.com/images/modules/site/home/icons/file.svg" alt="File icon" class="mr-1-fluid" loading="lazy">
<div>index.html</div>
</div>
</div>
<div class="home-repo-editor-file">
<div class="d-flex opacity-4">
<pre class="opacity-4 text-right text-white home-pre pre-line p-3-fluid">
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
</pre>
<div class="flex-1">
<pre class="pre-line text-white home-pre px-2-fluid py-3-fluid">
<span class="code-green"># Octocat Classifier :octopus: :cat: :mag:</span>
<span class="code-pink">![](https://img.shields.io/badge/build-passing-brightgreen) ![](https://img.shields.io/badge/coverage-90%25-green) ![](https://img.shields.io/badge/dependencies-up%20to%20date-brightgreen)</span>
As the name suggests, Octocat Classifier is used to determine whether a given image contains an Octocat. It is trained with images from the <span class="code-pink">[Octodex](1)</span>, images shared with <span class="code-pink">[#MyOctocat on Twitter](2)</span>, and <span class="code-pink">[photographs of laptops with :octocat: stickers on them]()</span>.
<span class="code-green">## Installation</span>
```
git clone https://github.com/jasonetco/octocat-classifier
```
</pre>
</div>
</div>
</div>
<div class="home-repo-editor-terminal p-3-fluid position-absolute right-0 bottom-0 left-0" style="border-bottom-right-radius: 0.375rem;">
<svg height="16" class="octicon octicon-x text-gray-light-mktg position-absolute right-3 top-3" viewBox="0 0 16 16" version="1.1" width="16" aria-hidden="true"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 0L8 6.94l3.22-3.22a.75.75 0 111.06 1.06L9.06 8l3.22 3.22a.75.75 0 11-1.06 1.06L8 9.06l-3.22 3.22a.75.75 0 01-1.06-1.06L6.94 8 3.72 4.78a.75.75 0 010-1.06z"></path></svg>
<pre class="text-white text-mono pre-line home-pre js-type-in-item" data-type-delay="800">
<span class="text-bold code-pink">→</span> <span class="text-bold code-green">~/octocat-classifier</span> <span class="js-type-letters">gh repo create octocat-classifier</span>
<span class="js-type-row"><span class="code-green">✓</span> Created repository jasonetco/octocat-classifier on GitHub</span>
<span class="js-type-row"><span class="code-green">✓</span> Added remote https://github.com/jasonetco/octocat-classifier.git</span>
<span class="js-type-row"><span class="text-bold code-pink">→</span> <span class="text-bold code-green">~/octocat-classifier</span> <span class="js-type-letters">git push origin main</span></span>
</pre>
</div>
</div>
</div>
</div>
<img src="https://github.githubassets.com/images/modules/site/home/repo-editor-glow.svg" class="position-absolute z-n1 js-build-in-item build-in-scale-fade" style="width: 117.31%; margin: 0 -8.65%; top: 50%; transform: translateY(-50%);" alt="Light glowing behind the editor" decoding="async">
</div>
</div>
</div>
<div class="col-11 col-sm-10 offset-1">
<ul class="home-git-log-dark d-flex gutter-fluid gutter-spacious-fluid flex-column list-style-none pt-5-fluid pb-9-fluid">
<li class="col-12 d-flex flex-items-center position-relative f6-mktg-fluid text-mono text-gray-light-mktg py-2-fluid unselectable" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="22" width="28" class="home-git-icon home-git-item flex-shrink-0 mr-3-fluid position-relative z-1"><path d="m2.5 10a1 1 0 1 0 0 2zm23 2a1 1 0 1 0 0-2zm-23 0h23v-2h-23z" fill="#465061"></path><circle cx="14" cy="11" fill="#041027" r="5" stroke="#465061" stroke-width="2"></circle></svg>
<img src="https://avatars.githubusercontent.com/jasonetco?v=4" class="d-none d-sm-block flex-shrink-0 opacity-4 avatar avatar-4 mr-3-fluid circle bg-gray" alt="@jasonetco" loading="lazy">
<span class="opacity-4 text-truncate">Support Octocats shared on Twitter</span>
</li>
<li class="col-12 d-flex flex-items-center position-relative f6-mktg-fluid text-mono text-gray-light-mktg py-2-fluid unselectable" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="22" width="28" class="home-git-icon home-git-item flex-shrink-0 mr-3-fluid position-relative z-1"><path d="m2.5 10a1 1 0 1 0 0 2zm23 2a1 1 0 1 0 0-2zm-23 0h23v-2h-23z" fill="#465061"></path><circle cx="14" cy="11" fill="#041027" r="5" stroke="#465061" stroke-width="2"></circle></svg>
<img src="https://avatars.githubusercontent.com/jasonetco?v=4" class="d-none d-sm-block flex-shrink-0 opacity-4 avatar avatar-4 mr-3-fluid circle bg-gray" alt="@jasonetco" loading="lazy">
<span class="opacity-4 text-truncate">Created index.js</span>
</li>
<li class="col-12 col-md-9 col-lg-12">
<div class="d-flex flex-column flex-lg-row flex-lg-row-reverse flex-items-center gutter-fluid gutter-spacious-fluid my-4-fluid">
<div class="col-12 col-lg-6 py-5-fluid js-build-in build-in-slideX-left">
<h2 class="h2-5-mktg-fluid text-white mb-3-fluid text-gradient-mint-blue-dark">Build on what's<br> been built</h2>
<h3 class="h5-mktg-fluid h4-sm-mktg-fluid text-gray-light-mktg lh-condensed text-semibold-mktg mb-3-fluid"><span class="text-white">Write less code thanks to the world's largest software package registry.</span> Find the best community-approved projects to accelerate your work, then share it with the world with <a href="https://www.npmjs.com" class="text-gray-light-mktg text-underline" data-ga-click="npm, click to npm site, ref_page:/;ref_cta:npm;ref_loc:code launchpad">npm</a> and GitHub Packages.</h3>
</div>
<div class="col-12 col-lg-6" aria-hidden="true">
<div class="position-relative">
<div class="rounded-2-fluid home-packages-terminal f5-mktg-fluid p-4-fluid text-mono">
<pre class="pre-line text-white home-pre js-type-in">
<span class="text-bold code-pink">→</span> <span class="text-bold code-green">~/octocat-classifier</span> <span class="js-type-letters">npm install eslint</span>
<span class="js-type-row">+ [email protected]</span>
<span class="js-type-row"> added 109 packages from 64 contributors and audited 109 packages in 3.491s</span>
<span class="js-type-row"> </span>
<span class="js-type-row">9 packages are looking for funding</span>
<span class="js-type-row"> run `npm fund` for details</span>
<span class="js-type-row"></span>
<span class="js-type-row">found 0 vulnerabilities</span>
<span class="js-type-row"><span class="text-bold code-pink">→</span> <span class="text-bold code-green">~/octocat-classifier</span></span> <span class="js-type-letters"> </span>
</pre>
</div>
<img src="https://github.githubassets.com/images/modules/site/home/repo-terminal-glow.svg" class="position-absolute z-n1" style="width: 150%; margin: 0 -25%; top: 50%; transform: translateY(-50%);" alt="Light glowing behind the editor" loading="lazy">
</div>
</div>
</div>
</li>