-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2773 lines (2290 loc) · 282 KB
/
index.html
File metadata and controls
2773 lines (2290 loc) · 282 KB
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">
<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-J/5cWm5rrVuxkSgldaK1emf5j30Bs5mRgu0uhuHrG+iwf9mD2LOrkQ32SyN5PADLWzkSDxLS3bW/ScsiM44wzw==" rel="stylesheet" href="https://github.githubassets.com/assets/frameworks-27fe5c5a6e6bad5bb191282575a2b57a.css"
/>
<link crossorigin="anonymous" media="all" integrity="sha512-qUr/P6VKezIAh883WaQzwEPyjPNFu8lGw4RNwUThm7MbdK5Nf83x3BKEDUgj5TnMLN8/tEUCYhAE1j1lyxgA5g==" rel="stylesheet" href="https://github.githubassets.com/assets/colors-v2-a94aff3fa54a7b320087cf3759a433c0.css"
/>
<link crossorigin="anonymous" media="all" integrity="sha512-tLF7vl8nbeo3WRDlqIAgYYiEl53NFb2F58kvIEfCYd/Dgq76zXKIhZpEAO9H4wtqaV+0npnvmQF1rjAMq6b1tA==" rel="stylesheet" href="https://github.githubassets.com/assets/behaviors-b4b17bbe5f276dea375910e5a8802061.css"
/>
<link crossorigin="anonymous" media="all" integrity="sha512-ku388ijMj4VK1ycHjNi3+zQuWDO2Db/qEv1nnNjXaEhFFmvr23uxrUeCxurHY7HcI9th2xXViPf6+j7Q4EIw2A==" rel="stylesheet" href="https://github.githubassets.com/assets/site-92edfcf228cc8f854ad727078cd8b7fb.css"
/>
<script crossorigin="anonymous" defer="defer" integrity="sha512-CzeY4A6TiG4fGZSWZU8FxmzFFmcQFoPpArF0hkH0/J/S7UL4eed/LKEXMQXfTwiG5yEJBI+9BdKG8KQJNbhcIQ==" type="application/javascript" src="https://github.githubassets.com/assets/environment-0b3798e0.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-czQZrI8Ar39Oil36WxqNfOBo7pZqlK1CUHWZ8CF9jMxyawHGQ+lKiPtd25OvoNHZF69LfWPpafuwqxcfiG/iYA==" type="application/javascript" src="https://github.githubassets.com/assets/chunk-frameworks-733419ac.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-YOzkTPNBhsGBHTWNXcjLCxYM3ANDGkp2gejU1oLAxIG4g8VAZJlFYJX2Eo//GCdStAeiby9Y2FecMxmDQwj+Ow==" type="application/javascript" src="https://github.githubassets.com/assets/chunk-vendor-60ece44c.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-U5w2SuNhe024Q+iVhaZ18HiQCUlgfujDoHEjt9JRP0MRtF4TUhuBd/Ur2yIsgVsM0Q1GSS7yDokYo8unl+F3JQ==" type="application/javascript" src="https://github.githubassets.com/assets/behaviors-539c364a.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-5tWKSr7mhAzSh4Sx5YRFgKftdGxKwHKnOGYw5DlxjHhkQVURYFU3Bk5IMOGMKuAiJTlC3OXYM3xzGcyjzuEFQQ==" type="application/javascript" data-module-id="./chunk-animate-on-scroll.js" data-src="https://github.githubassets.com/assets/chunk-animate-on-scroll-e6d58a4a.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-0MZorw3oXnKy5eeSwQ9xGrKU4hxQeCXxmyxhneIHNhDIqu8vWh8mHss9FlC75Xd/bPWxFDCvdOo57tnTR46nbA==" type="application/javascript" data-module-id="./chunk-codemirror.js" data-src="https://github.githubassets.com/assets/chunk-codemirror-d0c668af.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-M6W/sGLOuJXCIkw+doDl6zl7J9q2DmqdwftQCtyEiZM/UJNGRVQdyKwI/PAMxD12se/wCx3ZcyJs9nz0o0OSVw==" type="application/javascript" data-module-id="./chunk-color-modes.js" data-src="https://github.githubassets.com/assets/chunk-color-modes-33a5bfb0.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-71HZu1T5JWqRNF9wrm2NXZAqYVvzxZ8Dvor5U5l/LuEBbGCBX57Sny60Rj+qUZZAvEBGFlNsz179DEn2HFwgVA==" type="application/javascript" data-module-id="./chunk-confetti.js" data-src="https://github.githubassets.com/assets/chunk-confetti-ef51d9bb.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-P29U0lNmhUj353VrCWp6czdhNpMtF70xVKf4GBGFVKCoqGtxp0sywAM8/46+iC0kdFiRvM13EBvDnq6oyWRwiw==" type="application/javascript" data-module-id="./chunk-contributions-spider-graph.js" data-src="https://github.githubassets.com/assets/chunk-contributions-spider-graph-3f6f54d2.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-6j/oSF+kbW+yetNPvI684VzAu9pzug6Vj2h+3u1LdCuRhR4jnuiHZfeQKls3nxcT/S3H+oIt7FtigE/aeoj+gg==" type="application/javascript" data-module-id="./chunk-drag-drop.js" data-src="https://github.githubassets.com/assets/chunk-drag-drop-ea3fe848.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-VSSd+Yzi2iMS+pibY6hD/WdypxAEdob5F2RMKxuKcAHS2EpFYJPeTXoVxt0NXg03tfj2dka2mEtHS+vjpYSaDw==" type="application/javascript" data-module-id="./chunk-edit-hook-secret-element.js" data-src="https://github.githubassets.com/assets/chunk-edit-hook-secret-element-55249df9.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-XObZgIojqwx94ekra728uVPTHs30O37w4+dNCDNUrZXRnGmFRcitdymWoSEm7ztcvhzboxHmXOSP2TeoPSfQ5Q==" type="application/javascript" data-module-id="./chunk-edit.js" data-src="https://github.githubassets.com/assets/chunk-edit-5ce6d980.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-aiqMIGGZGo8AQMjcoImKPMTsZVVRl6htCSY7BpRmpGPG/AF+Wq+P/Oj/dthWQOIk9cCNMPEas7O2zAR6oqn0tA==" type="application/javascript" data-module-id="./chunk-emoji-picker-element.js" data-src="https://github.githubassets.com/assets/chunk-emoji-picker-element-6a2a8c20.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-qqRgtYe+VBe9oQvKTYSA9uVb3qCKhEMl3sHdsnP8AbVRfumjSOugTCEN1YLmnniNBMXb77ty2wddblbKSaQE1Q==" type="application/javascript" data-module-id="./chunk-failbot.js" data-src="https://github.githubassets.com/assets/chunk-failbot-aaa460b5.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-YrRWJ3DBTEGQ3kU5vH0Btt+bjUcZHoTj66uIO7wFIfT1LoKJQ0Q2+UTn4rmeKn+PrnMAnQogCNC6Lka17tDncw==" type="application/javascript" data-module-id="./chunk-filter-input.js" data-src="https://github.githubassets.com/assets/chunk-filter-input-62b45627.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-Z1wcyOFQHzyMSPqp5DLKrobr3DN2Q6Dz31cfPtw4b2vPs9PX0PrxyDXHpTbIlcZ9qT1M1BNAypHKKw8Lp6Yx/Q==" type="application/javascript" data-module-id="./chunk-insights-graph.js" data-src="https://github.githubassets.com/assets/chunk-insights-graph-675c1cc8.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-gwtCVvmTqprGdoOWD5qAo64uilYKmDOqEN0XIzMX9KT9u8HabjeF9sk/819qZEcUAZbpzd7gNOU7YW0CDkaEjg==" type="application/javascript" data-module-id="./chunk-insights-query.js" data-src="https://github.githubassets.com/assets/chunk-insights-query-830b4256.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-lmosGyye+/xONUQs9SwGN/a9fQvUSiAFk5HrL8eLHjeuOx9DX9TW5ckRKFD+6FM54vutFf/mBmNFW/0R3KJEBw==" type="application/javascript" data-module-id="./chunk-invitations.js" data-src="https://github.githubassets.com/assets/chunk-invitations-966a2c1b.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-4MxGQhsDODvZgLbu5arO6CapfnNvZ5fXMsZ47FiklUKRmHq4B3h8uTokSIWAOAxsvCMRrZr0DVZ0i0gm3RAnsg==" type="application/javascript" data-module-id="./chunk-jump-to.js" data-src="https://github.githubassets.com/assets/chunk-jump-to-e0cc4642.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-VtdawM/OSsu+d6v25ZY6UcQa/GGLAStSESjsqdEwx+ey88GNYGkQ24o+JFFo4lY+7wLMRf7aCrLxkA5SquBoNQ==" type="application/javascript" data-module-id="./chunk-launch-code-element.js" data-src="https://github.githubassets.com/assets/chunk-launch-code-element-56d75ac0.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-RduaLAviB2ygvRK/eX5iwzYO43ie7svrJ0rYJs06x7XqpRl/IK8PPBscBWM9Moo5Z86DK2iRLE2+aR7TJ5Uc2Q==" type="application/javascript" data-module-id="./chunk-metric-selection-element.js" data-src="https://github.githubassets.com/assets/chunk-metric-selection-element-45db9a2c.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-7hZ031ngiF36wGsfcoyyCWTqwYxjX+qeTLtCV7CJ+IO+wzkzCm1RoR3WzWczfWmwLNqr+Hu3kQOgkBaGn4ntWQ==" type="application/javascript" data-module-id="./chunk-notification-list-focus.js" data-src="https://github.githubassets.com/assets/chunk-notification-list-focus-ee1674df.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-ma0OOy3nj0c1cqBx0BkcmIFsLqcSZ+MIukQxyEFM/OWTzZpG+QMgOoWPAHZz43M6fyjAUG1jH6c/6LPiiKPCyw==" type="application/javascript" data-module-id="./chunk-profile-pins-element.js" data-src="https://github.githubassets.com/assets/chunk-profile-pins-element-99ad0e3b.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-hgoSKLTlL8I3IWr/TLONCU+N4kdCtdrHCrrud4NKhgRlLrTw0XUPhqBaDdZUiFSzDQRw/nFQ1kw2VeTm0g9+lA==" type="application/javascript" data-module-id="./chunk-profile.js" data-src="https://github.githubassets.com/assets/chunk-profile-860a1228.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-dmP0pnRItCP7ydEXVipp98lz/HaQtHyG00kfd8lMS5AoLbDwGfqXPjj7Q0qLGpPc7lBkySNNHIeEPF7NblctEA==" type="application/javascript" data-module-id="./chunk-readme-toc-element.js" data-src="https://github.githubassets.com/assets/chunk-readme-toc-element-7663f4a6.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-/fwTpG2i+GCgHEZc/35F+pXdShv1RfJMxyixcTIxzxDdylOWVJvjIWoumYWEPj7gUqBdrWt4SFf989Szmxleaw==" type="application/javascript" data-module-id="./chunk-ref-selector.js" data-src="https://github.githubassets.com/assets/chunk-ref-selector-fdfc13a4.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-D/MxBjtRPjes6DvnYGi2dEH7AQEnLvSvTODabEkSo+1zP6SSEZpb8oF52kFWERA97t1L19fF/P3bn4pgIsMPuA==" type="application/javascript" data-module-id="./chunk-responsive-underlinenav.js" data-src="https://github.githubassets.com/assets/chunk-responsive-underlinenav-0ff33106.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-SWy36S28Js+/YzsvYgmp+IEdC0qtMcBf6sYhXTEcj1aFPCLPOTOnOKqzFiNyH2oNVDd+u5Qi8eqYINSIu28LFQ==" type="application/javascript" data-module-id="./chunk-runner-groups.js" data-src="https://github.githubassets.com/assets/chunk-runner-groups-496cb7e9.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-FcH835sK5dmHJmGX2K6Vp4tFq7gUEykUvVXTf+7LmdLoLuYjxIGixOfLxBeCQ+1LDTJ/43bSgqmlDlN0qnGTYQ==" type="application/javascript" data-module-id="./chunk-series-table.js" data-src="https://github.githubassets.com/assets/chunk-series-table-15c1fcdf.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-tk76eoSLUqXSVZ8ANzPprrOImFIV1zQ/VBV+WzG8ZjZpVPH8cLkMH/ur5HJB1lxx9/yo+V2wjDF96t4qfUwZLA==" type="application/javascript" data-module-id="./chunk-severity-calculator-element.js" data-src="https://github.githubassets.com/assets/chunk-severity-calculator-element-b64efa7a.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-j7Pb1H+2Xt4YIKSrJLLXxl/NNkkpW//5PLTpu58JGD8pqRPODDjJKqjO6YPZd++BB4VJubHPjzvuMXhW/9jcqA==" type="application/javascript" data-module-id="./chunk-sortable-behavior.js" data-src="https://github.githubassets.com/assets/chunk-sortable-behavior-8fb3dbd4.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-nKa3UdA2O7Ve4Jn24gaB20yUfJvS7wlnd8Q8C+iWD8i2tXLgaKemDWkLeexeQdrs+an98FCl5fOiy0J+izn+tQ==" type="application/javascript" data-module-id="./chunk-three.module.js" data-src="https://github.githubassets.com/assets/chunk-three.module-9ca6b751.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-WK8VXw3lfUQ/VRW0zlgKPhcMUqH0uTnB/KzePUPdZhCm/HpxfXXHKTGvj5C0Oex7+zbIM2ECzULbtTCT4ug3yg==" type="application/javascript" data-module-id="./chunk-toast.js" data-src="https://github.githubassets.com/assets/chunk-toast-58af155f.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-1vSZvwpr106s8wjSNFNFGVmFT2E4YjI2N8k6JqiSb28GGYMkEJUhveotmvB00Z4bQZM61ZgvWcXax1U3M48gLQ==" type="application/javascript" data-module-id="./chunk-tweetsodium.js" data-src="https://github.githubassets.com/assets/chunk-tweetsodium-d6f499bf.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-UOFNW/xcxynplVfC8Y3fQdFFiasmugYUUHU4N90G8sqBZGL1yR37yjVakxV8/FV5deBALx9OQMBoiba/3OHGDA==" type="application/javascript" data-module-id="./chunk-user-status-submit.js" data-src="https://github.githubassets.com/assets/chunk-user-status-submit-50e14d5b.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-cKu/+X7gT+WVH4sXKt0g3G77bfQfcgwurRObM+dt8XylPm9eEWI+/aWKhVab6VsYuvvuI5BTriKXhXfJwaSXdQ==" type="application/javascript" data-module-id="./chunk-webgl-warp.js" data-src="https://github.githubassets.com/assets/chunk-webgl-warp-70abbff9.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-Efgm6KMFtBW+9f9uNqJiAQYMZprzFrAa2/8LffJLyvpDAR/7iOPI4UV78tAsmKbjkg76dDXBECYt72pG+JoqBA==" type="application/javascript" src="https://github.githubassets.com/assets/marketing-features-11f826e8.js"></script>
<script crossorigin="anonymous" defer="defer" integrity="sha512-YPik0ih1MbbgSOxLe4RWUrpYuc7wF64X01slMvxOv5LgX4kPT3ef9AnQNXEA0TR7742gGCCSoTeCXf9C6vUidg==" type="application/javascript" src="https://github.githubassets.com/assets/marketing-60f8a4d2.js"></script>
<meta name="viewport" content="width=device-width">
<title>Features | GitHub</title>
<meta name="description" content="Get the right tools for the job. Automate your CI/CD and DevOps workflow with GitHub Actions, build securely, manage teams and projects, and review code in one place.">
<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/features-launchpad.png" />
<meta name="twitter:site" content="@github" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="GitHub features: the right tools for the job" />
<meta name="twitter:description" content="Get the right tools for the job. Automate your CI/CD and DevOps workflow with GitHub Actions, build securely, manage teams and projects, and review code in one place." />
<meta property="og:image" content="https://github.githubassets.com/images/modules/site/social-cards/features-launchpad.png" />
<meta property="og:image:alt" content="Get the right tools for the job. Automate your CI/CD and DevOps workflow with GitHub Actions, build securely, manage teams and projects, and review code in one place." />
<meta property="og:site_name" content="GitHub" />
<meta property="og:type" content="object" />
<meta property="og:title" content="GitHub features: the right tools for the job" />
<meta property="og:url" content="https://github.com/features" />
<meta property="og:description" content="Get the right tools for the job. Automate your CI/CD and DevOps workflow with GitHub Actions, build securely, manage teams and projects, and review code in one place." />
<link rel="assets" href="https://github.githubassets.com/">
<link rel="shared-web-socket" href="wss://alive.github.com/_sockets/u/75583436/ws?session=eyJ2IjoiVjMiLCJ1Ijo3NTU4MzQzNiwicyI6NzIxOTk1MDAwLCJjIjo4Nzc5ODAyMjgsInQiOjE2MjU5OTAzODV9--c57aefc3d47c0849b8f97e8534d1cd0c591cfa1bab51798f1470244503e29441" data-refresh-url="/_alive"
data-session-id="8c0956d90e423d8b4fc52324acd64da2c8eab411e63bdeea0ef99bcab8e6e8c1">
<link rel="shared-web-socket-src" href="/socket-worker-3f088aa2.js">
<link rel="sudo-modal" href="/sessions/sudo_modal">
<meta name="request-id" content="F902:4881:78ACE9E:ACBEB94:60EAA4E5" data-pjax-transient="true" />
<meta name="html-safe-nonce" content="7bc8cb671128bb05a01291bc10fa2375765db97886e3b69682ff1ebab697ac08" data-pjax-transient="true" />
<meta name="visitor-payload" content="eyJyZWZlcnJlciI6bnVsbCwicmVxdWVzdF9pZCI6IkY5MDI6NDg4MTo3OEFDRTlFOkFDQkVCOTQ6NjBFQUE0RTUiLCJ2aXNpdG9yX2lkIjoiNjUxNDk3ODY1ODE5MDkzNjA4MiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9" data-pjax-transient="true"
/>
<meta name="visitor-hmac" content="d4a1a725ea7f17ea152bfdbf5fac3133b35a67375a21e04096fb36631ae15c78" data-pjax-transient="true" />
<meta name="github-keyboard-shortcuts" content="" data-pjax-transient="true" />
<meta name="selected-link" value="/features" 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="octolytics-actor-id" content="75583436" />
<meta name="octolytics-actor-login" content="MatheusMoraesdeJesus" />
<meta name="octolytics-actor-hash" content="a3e0e8f017286637830d98de69c976ffd59d69cabd89a66710d6a2162192c444" />
<meta name="hostname" content="github.com">
<meta name="user-login" content="MatheusMoraesdeJesus">
<meta name="expected-hostname" content="github.com">
<meta name="js-proxy-site-detection-payload" content="NDAzMmJkY2I2ZWY3YWI1NDk0YjIzZjY5NTliNjFjNTRiM2UyOGE0YzFlOWExMDUzYjI4ZDA2YTY1NTNmNTNkN3x7InJlbW90ZV9hZGRyZXNzIjoiMjAxLjUxLjI1My4xMyIsInJlcXVlc3RfaWQiOiJGOTAyOjQ4ODE6NzhBQ0U5RTpBQ0JFQjk0OjYwRUFBNEU1IiwidGltZXN0YW1wIjoxNjI1OTkwMzg1LCJob3N0IjoiZ2l0aHViLmNvbSJ9">
<meta name="enabled-features" content="MARKETPLACE_PENDING_INSTALLATIONS,GITHUB_TOKEN_PERMISSION">
<meta http-equiv="x-pjax-version" content="f860e92748f639913b328fc2018e6a6526f4f1c50f85fad09d95d9ddbf2df572">
<link crossorigin="anonymous" media="all" integrity="sha512-LwM32lKjeD4InsrU4Vim9dT7QauXI4ToBobLb4YpYx4cOyJMGRJEiU0Nkrunus5R882te5LtmHkCc3dO9GZC2Q==" rel="stylesheet" href="https://github.githubassets.com/assets/features-2f0337da52a3783e089ecad4e158a6f5.css"
/>
<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">
<meta name="enabled-homepage-translation-languages" content="">
</head>
<body class="logged-in env-production page-responsive header-white" style="word-wrap: break-word;">
<div class="position-relative js-header-wrapper ">
<a href="#start-of-content" class="p-3 color-bg-info-inverse color-text-white show-on-focus js-skip-to-content">Skip to content</a>
<span data-view-component="true" class="progress-pjax-loader width-full js-pjax-loader-bar Progress position-fixed">
<span style="background-color: #79b8ff;width: 0%;" data-view-component="true" class="Progress-item progress-pjax-loader-bar"></span>
</span>
<header class="Header js-details-container Details px-3 px-md-4 px-lg-5 flex-wrap flex-md-nowrap" role="banner">
<div class="Header-item mt-n1 mb-n1 d-none d-md-flex">
<a class="Header-link " href="https://github.com/" data-hotkey="g d" aria-label="Homepage " data-ga-click="Header, go to dashboard, icon:logo">
<svg class="octicon octicon-mark-github v-align-middle" height="32" 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>
<div class="Header-item d-md-none">
<button class="Header-link btn-link js-details-target" type="button" aria-label="Toggle navigation" aria-expanded="false">
<svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="24" width="24" class="octicon octicon-three-bars">
<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 class="Header-item Header-item--full flex-column flex-md-row width-full flex-order-2 flex-md-order-none mr-0 mr-md-3 mt-3 mt-md-0 Details-content--hidden-not-important d-md-flex">
<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">
<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 or jump to…"
data-unscoped-placeholder="Search or jump to…"
data-scoped-placeholder="Search or jump to…"
autocapitalize="off"
role="combobox"
aria-haspopup="listbox"
aria-expanded="false"
aria-autocomplete="list"
aria-controls="jump-to-results"
aria-label="Search or jump to…"
data-jump-to-suggestions-path="/_graphql/GetSuggestedNavigationDestinations"
spellcheck="false"
autocomplete="off"
>
<input type="hidden" value="RU5cLny3v+WzbioxSI8dSNO2RHba3jYm1LCAmJEoDHPxl4A8LlYVGo0d/Y02f9b0QmFnldzOpOI6BNzLZmtpOw==" data-csrf="true" class="js-data-jump-to-suggestions-path-csrf" />
<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 color-bg-tertiary px-1 color-text-tertiary 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 color-bg-tertiary px-1 color-text-tertiary 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="color-text-secondary">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 color-bg-tertiary px-1 color-text-tertiary 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 color-bg-tertiary px-1 color-text-tertiary 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 color-bg-tertiary px-1 color-text-tertiary 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 color-bg-tertiary px-1 color-text-tertiary 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 color-bg-tertiary px-1 color-text-tertiary 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 color-bg-tertiary px-1 color-text-tertiary 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-center flex-items-center p-0 f5 js-jump-to-suggestion">
<svg style="box-sizing: content-box; color: var(--color-icon-primary);" viewBox="0 0 16 16" fill="none" data-view-component="true" width="32" height="32" class="m-3 anim-rotate">
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke" />
<path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke" />
</svg>
</li>
</ul>
</div>
</label>
</form>
</div>
</div>
<nav class="d-flex flex-column flex-md-row flex-self-stretch flex-md-self-auto" aria-label="Global">
<a class="Header-link py-md-3 d-block d-md-none py-2 border-top border-md-top-0 border-white-fade" data-ga-click="Header, click, Nav menu - item:dashboard:user" aria-label="Dashboard" href="/dashboard">
Dashboard
</a>
<a class="js-selected-navigation-item Header-link mt-md-n3 mb-md-n3 py-2 py-md-3 mr-0 mr-md-3 border-top border-md-top-0 border-white-fade" data-hotkey="g p" data-ga-click="Header, click, Nav menu - item:pulls context:user" aria-label="Pull requests you created"
data-selected-links="/pulls /pulls/assigned /pulls/mentioned /pulls" href="/pulls">
Pull<span class="d-inline d-md-none d-lg-inline"> request</span>s
</a>
<a class="js-selected-navigation-item Header-link mt-md-n3 mb-md-n3 py-2 py-md-3 mr-0 mr-md-3 border-top border-md-top-0 border-white-fade" data-hotkey="g i" data-ga-click="Header, click, Nav menu - item:issues context:user" aria-label="Issues you created"
data-selected-links="/issues /issues/assigned /issues/mentioned /issues" href="/issues">
Issues
</a>
<div class="d-flex position-relative">
<a class="js-selected-navigation-item Header-link flex-auto mt-md-n3 mb-md-n3 py-2 py-md-3 mr-0 mr-md-3 border-top border-md-top-0 border-white-fade" data-ga-click="Header, click, Nav menu - item:marketplace context:user" data-octo-click="marketplace_click"
data-octo-dimensions="location:nav_bar" data-selected-links=" /marketplace" href="/marketplace">
Marketplace
</a> </div>
<a class="js-selected-navigation-item Header-link mt-md-n3 mb-md-n3 py-2 py-md-3 mr-0 mr-md-3 border-top border-md-top-0 border-white-fade" data-ga-click="Header, click, Nav menu - item:explore" data-selected-links="/explore /trending /trending/developers /integrations /integrations/feature/code /integrations/feature/collaborate /integrations/feature/ship showcases showcases_search showcases_landing /explore"
href="/explore">
Explore
</a>
<a class="js-selected-navigation-item Header-link d-block d-md-none py-2 py-md-3 border-top border-md-top-0 border-white-fade" data-ga-click="Header, click, Nav menu - item:workspaces context:user" data-selected-links="/codespaces /codespaces" href="/codespaces">
Codespaces
</a>
<a class="js-selected-navigation-item Header-link d-block d-md-none py-2 py-md-3 border-top border-md-top-0 border-white-fade" data-ga-click="Header, click, Nav menu - item:Sponsors" data-hydro-click="{"event_type":"sponsors.button_click","payload":{"button":"HEADER_SPONSORS_DASHBOARD","sponsorable_login":"MatheusMoraesdeJesus","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="957429dc18cb0b5f9c9ce827cb29f149ff8a4381e829d27965a8032b3d18cf29" data-selected-links=" /sponsors/accounts" href="/sponsors/accounts">Sponsors</a>
<a class="Header-link d-block d-md-none mr-0 mr-md-3 py-2 py-md-3 border-top border-md-top-0 border-white-fade" href="/settings/profile">
Settings
</a>
<a class="Header-link d-block d-md-none mr-0 mr-md-3 py-2 py-md-3 border-top border-md-top-0 border-white-fade" href="/MatheusMoraesdeJesus">
<img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/75583436?s=40&v=4" width="20" height="20" alt="@MatheusMoraesdeJesus" />
MatheusMoraesdeJesus
</a>
<!-- '"` -->
<!-- </textarea></xmp> -->
</option>
</form>
<form action="/logout" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="ZaP7vSaL2gQ1ukguNqP9ORUZPwvKK4NX9f2URwNMDzzz9Uq9kcewnpmtVIB1ui9X5NAO8QvE9r2MTZM6AKIvxA==" />
<button type="submit" class="Header-link mr-0 mr-md-3 py-2 py-md-3 border-top border-md-top-0 border-white-fade d-md-none btn-link d-block width-full text-left" data-ga-click="Header, sign out, icon:logout" style="padding-left: 2px;">
<svg class="octicon octicon-sign-out v-align-middle" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M2 2.75C2 1.784 2.784 1 3.75 1h2.5a.75.75 0 010 1.5h-2.5a.25.25 0 00-.25.25v10.5c0 .138.112.25.25.25h2.5a.75.75 0 010 1.5h-2.5A1.75 1.75 0 012 13.25V2.75zm10.44 4.5H6.75a.75.75 0 000 1.5h5.69l-1.97 1.97a.75.75 0 101.06 1.06l3.25-3.25a.75.75 0 000-1.06l-3.25-3.25a.75.75 0 10-1.06 1.06l1.97 1.97z"></path></svg>
Sign out
</button>
</form>
</nav>
</div>
<div class="Header-item Header-item--full flex-justify-center d-md-none position-relative">
<a class="Header-link " href="https://github.com/" data-hotkey="g d" aria-label="Homepage " data-ga-click="Header, go to dashboard, icon:logo">
<svg class="octicon octicon-mark-github v-align-middle" height="32" 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>
<div class="Header-item mr-0 mr-md-3 flex-order-1 flex-md-order-none">
<notification-indicator class="js-socket-channel" data-test-selector="notifications-indicator" data-channel="eyJjIjoibm90aWZpY2F0aW9uLWNoYW5nZWQ6NzU1ODM0MzYiLCJ0IjoxNjI1OTkwMzg1fQ==--4c37df31822d303f58108135997f69c2885d13f014b5a106106013d4cba976f8">
<a href="/notifications" class="Header-link notification-indicator position-relative tooltipped tooltipped-sw" aria-label="You have no unread notifications" data-hotkey="g n" data-ga-click="Header, go to notifications, icon:read" data-target="notification-indicator.link">
<span class="mail-status " data-target="notification-indicator.modifier"></span>
<svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-bell">
<path d="M8 16a2 2 0 001.985-1.75c.017-.137-.097-.25-.235-.25h-3.5c-.138 0-.252.113-.235.25A2 2 0 008 16z"></path><path fill-rule="evenodd" d="M8 1.5A3.5 3.5 0 004.5 5v2.947c0 .346-.102.683-.294.97l-1.703 2.556a.018.018 0 00-.003.01l.001.006c0 .002.002.004.004.006a.017.017 0 00.006.004l.007.001h10.964l.007-.001a.016.016 0 00.006-.004.016.016 0 00.004-.006l.001-.007a.017.017 0 00-.003-.01l-1.703-2.554a1.75 1.75 0 01-.294-.97V5A3.5 3.5 0 008 1.5zM3 5a5 5 0 0110 0v2.947c0 .05.015.098.042.139l1.703 2.555A1.518 1.518 0 0113.482 13H2.518a1.518 1.518 0 01-1.263-2.36l1.703-2.554A.25.25 0 003 7.947V5z"></path>
</svg>
</a>
</notification-indicator>
</div>
<div class="Header-item position-relative d-none d-md-flex">
<details class="details-overlay details-reset">
<summary class="Header-link" aria-label="Create new…" data-ga-click="Header, create new, icon:add">
<svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-plus">
<path fill-rule="evenodd" d="M7.75 2a.75.75 0 01.75.75V7h4.25a.75.75 0 110 1.5H8.5v4.25a.75.75 0 11-1.5 0V8.5H2.75a.75.75 0 010-1.5H7V2.75A.75.75 0 017.75 2z"></path>
</svg> <span class="dropdown-caret"></span>
</summary>
<details-menu class="dropdown-menu dropdown-menu-sw">
<a role="menuitem" class="dropdown-item" href="/new" data-ga-click="Header, create new repository">
New repository
</a>
<a role="menuitem" class="dropdown-item" href="/new/import" data-ga-click="Header, import a repository">
Import repository
</a>
<a role="menuitem" class="dropdown-item" href="https://gist.github.com/" data-ga-click="Header, create new gist">
New gist
</a>
<a role="menuitem" class="dropdown-item" href="/organizations/new" data-ga-click="Header, create new organization">
New organization
</a>
<a role="menuitem" class="dropdown-item" href="/new/project" data-ga-click="Header, create new project">
New project
</a>
</details-menu>
</details>
</div>
<div class="Header-item position-relative mr-0 d-none d-md-flex">
<details class="details-overlay details-reset js-feature-preview-indicator-container" data-feature-preview-indicator-src="/users/MatheusMoraesdeJesus/feature_preview/indicator_check">
<summary class="Header-link" aria-label="View profile and more" data-ga-click="Header, show menu, icon:avatar">
<img src="https://avatars.githubusercontent.com/u/75583436?s=60&v=4" alt="@MatheusMoraesdeJesus" size="20" data-view-component="true" height="20" width="20" class="avatar-user avatar avatar-small"></img>
<span class="feature-preview-indicator js-feature-preview-indicator" style="top: 1px;" hidden></span>
<span class="dropdown-caret"></span>
</summary>
<details-menu class="dropdown-menu dropdown-menu-sw" style="width: 180px" src="/users/75583436/menu" preload>
<include-fragment>
<p class="text-center mt-3" data-hide-on-error>
<svg style="box-sizing: content-box; color: var(--color-icon-primary);" viewBox="0 0 16 16" fill="none" data-view-component="true" width="32" height="32" class="anim-rotate">
<circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke" />
<path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke" />
</svg>
</p>
<p class="ml-1 mb-2 mt-2 color-text-primary" data-show-on-error>
<svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-alert">
<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> Sorry, something went wrong.
</p>
</include-fragment>
</details-menu>
</details>
</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 aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-x">
<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 class="font-mktg">
<style>
html {
scroll-behavior: smooth
}
</style>
<div class="p-responsive container-xl text-center mt-12 mb-6">
<h1 class="h1-mktg col-7-max mx-auto">The tools you need to build what you want.</h1>
</div>
<div class="position-relative">
<div class="js-features-nav-container features-nav-container container-xl overflow-x-scroll px-lg-6 mb-6">
<nav class="d-flex flex-row flex-auto flex-nowrap flex-items-start flex-lg-justify-center flex-lg-justify-between pt-5 pt-md-6 text-center" aria-label="GitHub Features page navigation">
<a href="#features-collaboration" class="features-nav__link text-mono color-text-secondary f6 no-underline js-smoothscroll-anchor mx-2 mb-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Collaborative Coding;ref_loc:hero section navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="1e5b7b99ff91e2620e6fd262ba22ff06b01903d34cb84905c18abd75883ac1ee">
<img src="https://github.githubassets.com/images/modules/site/features/launchpad/icons/icon-collaboration.svg" class="features-nav__img" alt="" aria-hidden="true" width="50" height="50">
<span class="d-block mt-1">Collaborative Coding</span>
</a>
<a href="#features-automation" class="features-nav__link text-mono color-text-secondary f6 no-underline js-smoothscroll-anchor mx-2 mb-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Automation and CI CD;ref_loc:hero section navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="a51123750a772f69e2e4150646fd32f5772c190a48ad12a2abf8757ed08785fa">
<img src="https://github.githubassets.com/images/modules/site/features/launchpad/icons/icon-automation.svg" class="features-nav__img" alt="" aria-hidden="true" width="50" height="50">
<span class="d-block mt-1">Automation & CI/CD</span>
</a>
<a href="#features-security" class="features-nav__link text-mono color-text-secondary f6 no-underline js-smoothscroll-anchor mx-2 mb-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Security;ref_loc:hero section navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="d3362da683f971ed2c542a2d77504dba143be9cc4d9bfe39ec958dba714f33be">
<img src="https://github.githubassets.com/images/modules/site/features/launchpad/icons/icon-security.svg" class="features-nav__img" alt="" aria-hidden="true" width="50" height="50">
<span class="d-block mt-1">Security</span>
</a>
<a href="#features-apps" class="features-nav__link text-mono color-text-secondary f6 no-underline js-smoothscroll-anchor mx-2 mb-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Client Apps;ref_loc:hero section navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="47cdf0d9b69160af00600e482f4c632a3ce0305edc7ac171ec4be7031c9b9832">
<img src="https://github.githubassets.com/images/modules/site/features/launchpad/icons/icon-apps.svg" class="features-nav__img" alt="" aria-hidden="true" width="50" height="50">
<span class="d-block mt-1">Client Apps</span>
</a>
<a href="#features-project-management" class="features-nav__link text-mono color-text-secondary f6 no-underline js-smoothscroll-anchor mx-2 mb-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Project Management;ref_loc:hero section navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="8ca6e1c41c53604dc23bb9662c6bdbc20fdbe0b76b7aa1ba3d820da22addc916">
<img src="https://github.githubassets.com/images/modules/site/features/launchpad/icons/icon-project-management.svg" class="features-nav__img" alt="" aria-hidden="true" width="50" height="50">
<span class="d-block mt-1">Project Management</span>
</a>
<a href="#features-team-administration" class="features-nav__link text-mono color-text-secondary f6 no-underline js-smoothscroll-anchor mx-2 mb-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Team Administration;ref_loc:hero section navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="572cf194bc3076d29cd2d9a6ab9f2a9c757d11006acf9256d4abfb9ef7b0d564">
<picture>
<source srcset="https://github.githubassets.com/images/modules/site/features/launchpad/icons/icon-team-admin.webp" type="image/webp">
<img src="https://github.githubassets.com/images/modules/site/features/launchpad/icons/icon-team-admin.png" class="features-nav__img" alt="" aria-hidden="true" width="50" height="50">
</picture>
<span class="d-block mt-1">Team Administration</span>
</a>
<a href="#features-community" class="features-nav__link text-mono color-text-secondary f6 no-underline js-smoothscroll-anchor mx-2 mb-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Community;ref_loc:hero section navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="9773e1d187fee4aa37aeef9a100a60162db87104fb24dde17a6d91a0f0120069">
<img src="https://github.githubassets.com/images/modules/site/features/launchpad/icons/icon-community.svg" class="features-nav__img" alt="" aria-hidden="true" width="50" height="50">
<span class="d-block mt-1">Community</span>
</a>
</nav>
</div>
<div class="js-horizontal-scroll-to-end features-hero-nav--scroll-btn-wrap position-absolute p-3 right-0 z-2">
<span class="features-hero-nav--scroll-btn d-block text-center circle color-bg-primary box-shadow-default-mktg link-blue-light-mktg js-build-in d-block d-md-none no-underline" aria-label="Scroll navigation"><svg class="octicon octicon mt-2" 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>
</div>
</div>
<div class="position-relative z-1">
<div class="features-new--background position-absolute width-full left-0 right-0 z-n1">
<img class="width-full height-auto" src="https://github.githubassets.com/images/modules/site/features/launchpad/backgrounds/bg-whats-new.svg" aria-hidden="true" alt="" width="1676" height="1040">
</div>
<div class="p-responsive container-xl overflow-x-hidden pt-4 d-flex flex-column flex-md-row">
<div class="col-12 col-md-6 mb-6 px-md-4">
<a href="/features/issues" class="d-block hover-grow rounded-2 box-shadow-card-border-mktg overflow-hidden position-relative no-underline" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn about Issues","label":"ref_page:/features;ref_cta:Learn More;ref_loc:whats new section","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="4e2ab00733592bf6067939c160cd0773e1169ff53db418e16ff7c35760d9c887">
<picture>
<source srcset="https://github.githubassets.com/images/modules/site/features/launchpad/backgrounds/issues.webp" type="image/webp">
<img src="https://github.githubassets.com/images/modules/site/features/launchpad/backgrounds/issues.png" aria-hidden="true" alt="" class="position-relative top-0 left-0 width-full height-auto d-block rounded-2" width="600px" height="407px">
</picture>
<span class="position-absolute width-full height-full top-0 left-0 d-flex flex-column text-left p-3 p-lg-4">
<span class="features-Label features-Label--blue f4-mktg text-bold flex-self-start">new</span>
<span class="d-block mt-auto d-flex flex-row flex-nowrap flex-justify-between flex-items-end flex-lg-items-center">
<span class="h4-mktg features--color-title">GitHub Issues</span>
<span class="no-wrap f4-mktg text-bold link-blue-mktg Bump-link">Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span></span>
</span>
</span>
</a>
</div>
<div class="col-12 col-md-6 mb-6 px-md-4">
<a href="/github/roadmap" class="d-block hover-grow rounded-2 box-shadow-card-border-mktg overflow-hidden position-relative no-underline" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn about GitHub Product Roadmap","label":"ref_page:/features;ref_cta:Learn More;ref_loc:whats new section","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="f78f78f9b1f951f56b5a8b58cb137a7f4f7fafe9d778afda5369e5586ef89349">
<picture>
<source srcset="https://github.githubassets.com/images/modules/site/features/launchpad/backgrounds/bg-new-roadmap.webp" type="image/webp">
<img src="https://github.githubassets.com/images/modules/site/features/launchpad/backgrounds/bg-new-roadmap.png" aria-hidden="true" alt="" class="position-relative top-0 left-0 width-full height-auto d-block rounded-2" width="600px" height="407px">
</picture>
<span class="position-absolute width-full height-full top-0 left-0 d-flex flex-column text-left p-3 p-lg-4">
<span class="features-Label features-Label--blue f4-mktg text-bold d-inline-block flex-self-start">new</span>
<span class="d-block mt-auto d-flex flex-row flex-nowrap flex-justify-between flex-items-end flex-lg-items-center">
<span class="h4-mktg features--color-title">Product Roadmap</span>
<span class="no-wrap f4-mktg text-bold link-blue-mktg Bump-link">Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span></span>
</span>
</span>
</a>
</div>
</div>
</div>
<div class="js-sticky site-subnav-sticky">
<div class="js-features-page-nav js-toggler-container page-nav features-page-nav color-bg-primary position-relative overflow-x-hidden top-0 p-2">
<div class="features-page-nav-content d-flex" aria-hidden="true">
<button type="button" tabindex="-1" class="page-nav-trigger js-toggler-target flex-self-start d-inline-block d-lg-none px-3 pt-2" style="line-height: 28px;" aria-label="Toggle page navigation">
<svg class="octicon octicon-three-bars color-text-primary replaced color-text-primary" viewBox="0 0 16 16" height="16"><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 color-text-primary" height="16" 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>
<nav class="page-nav-container width-full d-flex flex-row flex-nowrap flex-items-center flex-justify-between lh-condensed v-align-bottom" aria-label="GitHub Features page navigation">
<div class="d-flex flex-column flex-lg-row flex-auto flex-nowrap flex-items-start flex-justify-between">
<a href="#features-collaboration" tabindex="-1" class="selected page-nav-item text-left f5-mktg text-mono no-underline js-scrollnav-item js-smoothscroll-anchor pl-1 pr-0 py-3 mr-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Collaborative Coding;ref_loc:sticky navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="48e38c303d406e77edb804a02d80f740d3342e61942c4e331bf68a060f4c390f">
<span>Collaborative Coding</span>
</a>
<a href="#features-automation" tabindex="-1" class="page-nav-item text-left f5-mktg text-mono no-underline js-scrollnav-item js-smoothscroll-anchor pl-1 pr-0 py-3 mr-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Automation and CI CD;ref_loc:sticky navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="f9cee4e96880bbaec2211c1c933e3465403e71c32cd7be63a9311b9375b41ef4">
<span>Automation & CI/CD</span>
</a>
<a href="#features-security" tabindex="-1" class="page-nav-item text-left f5-mktg text-mono no-underline js-scrollnav-item js-smoothscroll-anchor pl-1 pr-0 py-3 mr-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Security;ref_loc:sticky navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="f27c94ba11cb1a07ff690c68679085027a250de6a633b7b32722d074c1877fd2">
<span>Security</span>
</a>
<a href="#features-apps" tabindex="-1" class="page-nav-item text-left f5-mktg text-mono no-underline js-scrollnav-item js-smoothscroll-anchor pl-1 pr-0 py-3 mr-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Client Apps;ref_loc:sticky navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="ed6e6343774ed86fb72c471c327ef40b01c0ab71993251798535051e470b5c68">
<span>Client Apps</span>
</a>
<a href="#features-project-management" tabindex="-1" class="page-nav-item text-left f5-mktg text-mono no-underline js-scrollnav-item js-smoothscroll-anchor pl-1 pr-0 py-3 mr-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Project Management;ref_loc:sticky navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="ddbb68789c003b427092560e0709a5955f279416b2761f725bd2b2aea5371e75">
<span>Project Management</span>
</a>
<a href="#features-team-administration" tabindex="-1" class="page-nav-item text-left f5-mktg text-mono no-underline js-scrollnav-item js-smoothscroll-anchor pl-1 pr-0 py-3 mr-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Team Administration;ref_loc:sticky navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="668a14512d57af2422c1509ae4681408bc839f7bc763f0b0492137ec6f7a4147">
<span>Team Administration</span>
</a>
<a href="#features-community" tabindex="-1" class="page-nav-item text-left f5-mktg text-mono no-underline js-scrollnav-item js-smoothscroll-anchor pl-1 pr-0 py-3 mr-4" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click nav item to scroll to content","label":"ref_page:/features;ref_cta:Community;ref_loc:sticky navigation","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="fa78b0f95d4526d153e96d0d7615a60827d71ddc77ec22a6c5cb4a7274b2c9ab">
<span>Community</span>
</a>
</div>
</nav>
</div>
</div>
</div>
<div id="features-collaboration" class="js-section px-lg-3">
<div class="features-category--dark position-relative z-1 overflow-x-hidden py-5 py-md-12">
<div class="position-absolute z-n1 top-0 left-0 width-full height-full d-none d-md-block">
<div class="p-responsive container-xl height-full">
<div class="position-relative col-1 height-full overflow-hidden">
<div class="features-category--git-line position-absolute right-7 top-12"></div>
</div>
</div>
</div>
<div class="p-responsive container-xl">
<div class="col-12 offset-md-1 col-md-11">
<header class="position-relative mb-5 mb-xl-9">
<div class="features-category--icon-shift position-static position-md-absolute pb-1 pt-3 left-n7">
<img src="https://github.githubassets.com/images/modules/site/features/launchpad/icons/icon-collaboration.svg" alt="GitHub Collaboration Icon" width="50" height="50">
</div>
<h2 class="h2-mktg d-inline-block features-category--title features-text-gradient--aquamarine-mauve">Collaborative <br>Coding</h2>
</header>
<div class="col-md-6 col-xl-4">
<div class="features--color-title position-relative mb-5 mb-md-8">
<div class="features-category--icon-shift d-none d-md-block position-absolute top-2 left-n7">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="20" viewBox="0 0 28 20" width="28"><path clip-rule="evenodd" d="m14 14c2.2091 0 4-1.7909 4-4 0-2.20914-1.7909-4-4-4s-4 1.79086-4 4c0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.31371-2.6863-6-6-6s-6 2.68629-6 6c0 3.3137 2.6863 6 6 6z" fill-rule="evenodd"></path></svg>
</div>
<div class="h6-mktg features--text-line-height features--text-medium">Contribute to projects quickly with automatic environment setup.</div>
</div>
<div class="features--color-title position-relative mb-5 mb-md-8">
<div class="features-category--icon-shift d-none d-md-block position-absolute top-2 left-n7">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="20" viewBox="0 0 28 20" width="28"><path clip-rule="evenodd" d="m14 14c2.2091 0 4-1.7909 4-4 0-2.20914-1.7909-4-4-4s-4 1.79086-4 4c0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.31371-2.6863-6-6-6s-6 2.68629-6 6c0 3.3137 2.6863 6 6 6z" fill-rule="evenodd"></path></svg>
</div>
<div class="h6-mktg features--text-line-height features--text-medium">Make sure you see the changes you care about.</div>
</div>
<div class="features--color-title position-relative mb-3 mb-md-8">
<div class="features-category--icon-shift d-none d-md-block position-absolute top-2 left-n7">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" height="20" viewBox="0 0 28 20" width="28"><path clip-rule="evenodd" d="m14 14c2.2091 0 4-1.7909 4-4 0-2.20914-1.7909-4-4-4s-4 1.79086-4 4c0 2.2091 1.7909 4 4 4zm0 2c3.3137 0 6-2.6863 6-6 0-3.31371-2.6863-6-6-6s-6 2.68629-6 6c0 3.3137 2.6863 6 6 6z" fill-rule="evenodd"></path></svg>
</div>
<div class="h6-mktg features--text-line-height features--text-medium">Build community around your code.</div>
</div>
</div>
</div>
</div>
<div class="col-12 offset-md-1 col-md-11 position-relative position-xl-absolute top-0 right-0 events-none">
<picture>
<source srcset="https://github.githubassets.com/images/modules/site/features/launchpad/backgrounds/bg-collaboration-glow.webp" type="image/webp">
<img class="width-full position-relative right-0 right-lg-n12" src="https://github.githubassets.com/images/modules/site/features/launchpad/backgrounds/bg-collaboration-glow.png" style="max-height: 75vw" aria-hidden="true" alt="" width="906" height="937">
</picture>
<img class="position-absolute top-n12 top-xl-0 right-0 width-fit" src="https://github.githubassets.com/images/modules/site/features/launchpad/backgrounds/bg-collaboration-shapes.svg" aria-hidden="true" alt="" width="888" height="908">
<div class="position-absolute top-0 right-0 my-auto bottom-0 d-flex flex-column flex-justify-center" style="max-width: 681px;">
<picture>
<source srcset="https://github.githubassets.com/images/modules/site/features/launchpad/illo/illo-collaboration-diff-view.webp" type="image/webp">
<img class="width-full height-auto d-block rounded" src="https://github.githubassets.com/images/modules/site/features/launchpad/illo/illo-collaboration-diff-view.png" style="background-color: rgba(4, 16, 39, 0.8); max-width: 80vw" alt="Pull requests display diffs to compare the changes you made in your topic branch against the base branch that you want to merge your changes into."
width="681" height="475">
</picture>
<div class="position-absolute width-full top-0 bottom-0 my-auto right-0">
<img class="d-block features-category--background-collaboration js-build-in height-auto width-full" src="https://github.githubassets.com/images/modules/site/features/launchpad/backgrounds/bg-collaboration-glow-mg.svg" aria-hidden="true" alt="" width="706"
height="509">
</div>
</div>
<picture>
<source srcset="https://github.githubassets.com/images/modules/site/features/launchpad/illo/illo-collaboration-convo.webp" type="image/webp">
<img class="height-auto d-block rounded position-absolute top-0 bottom-7 bottom-md-12 my-auto right-3 right-lg-7" src="https://github.githubassets.com/images/modules/site/features/launchpad/illo/illo-collaboration-convo.png" alt="Reviews allow collaborators to comment on the changes proposed in pull requests, approve the changes, or request further changes before the pull request is merged."
width="689" height="368" style="width: 689px; max-width: 85vw; background-color: rgba(4, 16, 39, 0.9);">
</picture>
</div>
<div class="p-responsive container-xl pt-md-6 mt-7 mt-md-9 mt-lg-12">
<div class="col-12 offset-md-1 col-md-11">
<div class="d-flex flex-row flex-justify-start flex-wrap js-features-category-items">
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8 js-features-category-item-visible">
<h4 class="h5-mktg features--color-title mb-2 col-11">Codespaces</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Code, build, test, debug, and deploy with an instant cloud development environment. Spin up a Codespace in seconds and access from any device.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/developing-online-with-codespaces" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Codespaces","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="ab1091641840c9147b9033f5969d7df3687894744d002b29821d27cfd38cf923">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8 js-features-category-item-visible">
<h4 class="h5-mktg features--color-title mb-2 col-11">Pull requests</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Allow contributors to easily notify you of changes they've pushed to a repository – with access limited to the contributors you specify. Easily merge changes you accept.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Pull requests","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="7f1c39c41e2891d5162718bfdd889d11c3bd6eba89821aec956bc1a56bbc3d84">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8 js-features-category-item-visible">
<h4 class="h5-mktg features--color-title mb-2 col-11">Notifications</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Get updates on the GitHub activity you've subscribed to. Use the notifications inbox to customize, triage, and manage your updates.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/managing-subscriptions-and-notifications-on-github" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Notifications","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="ef16c05ee6b94105b744a250b4830f2d3bf021fe30c2e8c99ed3152113429cc1">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8">
<h4 class="h5-mktg features--color-title mb-2 col-11">Code review</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Review new code, see visual code changes, and confidently merge code changes with automated status checks.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Code review","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="aae32705628aba3b2e83c8cdb33266b9092a91c69182386ddd882a5824e119aa">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8">
<h4 class="h5-mktg features--color-title mb-2 col-11">Code review assignments</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Assign code reviews to make it clear which team members should submit their review for a pull request.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Code review assignments","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="e4ece1e8c71831d63d7d3079cf0f47c7f1b83edf06d85f907f8af67e4d381457">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8">
<h4 class="h5-mktg features--color-title mb-2 col-11">Code owners</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Automatically request reviews–or require approval—by selected contributors when changes are made to sections of code that they own.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Code owners","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="f9ddde63ba167cf4ccca3177565f0f3b654f57640273cc2563639e7b49e53c88">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8">
<h4 class="h5-mktg features--color-title mb-2 col-11">Draft pull requests</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Use a pull request as a way to discuss and collaborate, without submitting to formal review or risking an unwanted merge.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests#draft-pull-requests" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Draft pull requests","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="61f0155890cd77044c0742dbdd04f94a2a143c32eadc0dbe871973919bae55ef">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8">
<h4 class="h5-mktg features--color-title mb-2 col-11">Protected branches</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Enforce restrictions on how code branches are merged, including requiring reviews, or allowing only specific contributors to work on a particular branch.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/administering-a-repository/about-protected-branches" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Protected branches","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="8df6c971493d8ea550de7bf8076b9d28709bfb5526ed0699e629fed0770669de">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8">
<h4 class="h5-mktg features--color-title mb-2 col-11">Team discussions</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Post and discuss updates within your entire GitHub organization, or just your team. Notify participants with updates, and link from anywhere.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/building-a-strong-community/about-team-discussions" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Team discussions","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="21d19a9fddebe6ca858713eb0012247faf1680beda34b11b5b72ba302e3d12d9">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8">
<h4 class="h5-mktg features--color-title mb-2 col-11">Team reviewers</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Request a team on GitHub to review your pull request. Members of the team will get a notification indicating that you've asked for their review.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/setting-up-and-managing-organizations-and-teams/managing-code-review-assignment-for-your-team" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Team reviewers","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="b33bac387cc4bee1725dc5ea83e8ff697824cd90d11b6b4419b2d3b1b62623a5">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8">
<h4 class="h5-mktg features--color-title mb-2 col-11">Multiple assignees</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Assign up to 10 people to work on a given issue or pull request, letting you more easily track who's working on what.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/managing-your-work-on-github/assigning-issues-and-pull-requests-to-other-github-users" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Multiple assignees","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="dd5115e79348e7eee72d3aaab924b91acb82e941d36ea20a53c877d08f59bdc0">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8">
<h4 class="h5-mktg features--color-title mb-2 col-11">Multiple reviewers</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Request review from multiple contributors. Requested reviewers will be notified that you've asked for their review.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/requesting-a-pull-request-review" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Multiple reviewers","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="5eb10daa7a42f2956748bae347c44713ff3c8a4390be84e27d48f7e63a2e7dd0">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8">
<h4 class="h5-mktg features--color-title mb-2 col-11">Multi-line comments</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Clarify code reviews by referencing or commenting on multiple lines at once in a pull request diff view.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Multi-line comments","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="42765c36a490e45bd3024092f488bd1d2d2af24b5f9eb5ff2c64a095dabb159f">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>
<div class="features-category-item col-12 col-md-6 col-lg-4 mb-6 mb-md-8">
<h4 class="h5-mktg features--color-title mb-2 col-11">Public repositories</h4>
<p class="features--color-text features--text-line-height f4 col-9 mb-2">
Work with any GitHub member on code in a public repository you control. Make changes, open a pull request, create an issue, and more.
</p>
<a class="f4-mktg no-wrap Bump-link link-blue-light-mktg" href="https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-repository-visibility" data-hydro-click="{"event_type":"analytics.event","payload":{"category":"Features","action":"click to learn more about Public repositories","label":"ref_page:/features;ref_cta:Learn more;ref_loc:collaborative coding category","originating_url":"https://github.com/features","user_id":75583436}}"
data-hydro-click-hmac="2bf6aeeef782eb010126f9c7961535b9d958b5c55a2554d6265d3a7fdef6ad66">
Learn more<span class="Bump-link-symbol ml-1"><svg aria-hidden="true" viewBox="0 0 16 16" version="1.1" data-view-component="true" height="16" width="16" class="octicon octicon-arrow-right">
<path fill-rule="evenodd" d="M8.22 2.97a.75.75 0 011.06 0l4.25 4.25a.75.75 0 010 1.06l-4.25 4.25a.75.75 0 01-1.06-1.06l2.97-2.97H3.75a.75.75 0 010-1.5h7.44L8.22 4.03a.75.75 0 010-1.06z"></path>
</svg></span>
</a>
</div>