-
Notifications
You must be signed in to change notification settings - Fork 270
/
package.json
1543 lines (1543 loc) · 60.2 KB
/
package.json
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
{
"name": "git-graph",
"displayName": "Git Graph",
"version": "1.30.0",
"publisher": "mhutchie",
"author": {
"name": "Michael Hutchison",
"email": "[email protected]"
},
"description": "View a Git Graph of your repository, and perform Git actions from the graph.",
"keywords": [
"git",
"graph",
"visualise",
"diff",
"action"
],
"categories": [
"Other"
],
"homepage": "https://github.com/mhutchie/vscode-git-graph",
"repository": {
"type": "git",
"url": "https://github.com/mhutchie/vscode-git-graph.git"
},
"bugs": {
"url": "https://github.com/mhutchie/vscode-git-graph/issues"
},
"qna": "https://github.com/mhutchie/vscode-git-graph/wiki/Support-Resources",
"license": "SEE LICENSE IN 'LICENSE'",
"icon": "resources/icon.png",
"engines": {
"vscode": "^1.38.0"
},
"extensionKind": [
"workspace"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"category": "Git Graph",
"command": "git-graph.view",
"title": "View Git Graph (git log)",
"icon": {
"light": "resources/cmd-icon-light.svg",
"dark": "resources/cmd-icon-dark.svg"
}
},
{
"category": "Git Graph",
"command": "git-graph.addGitRepository",
"title": "Add Git Repository..."
},
{
"category": "Git Graph",
"command": "git-graph.clearAvatarCache",
"title": "Clear Avatar Cache"
},
{
"category": "Git Graph",
"command": "git-graph.endAllWorkspaceCodeReviews",
"title": "End All Code Reviews in Workspace"
},
{
"category": "Git Graph",
"command": "git-graph.endSpecificWorkspaceCodeReview",
"title": "End a specific Code Review in Workspace..."
},
{
"category": "Git Graph",
"command": "git-graph.fetch",
"title": "Fetch from Remote(s)"
},
{
"category": "Git Graph",
"command": "git-graph.removeGitRepository",
"title": "Remove Git Repository..."
},
{
"category": "Git Graph",
"command": "git-graph.resumeWorkspaceCodeReview",
"title": "Resume a specific Code Review in Workspace..."
},
{
"category": "Git Graph",
"command": "git-graph.version",
"title": "Get Version Information"
},
{
"category": "Git Graph",
"command": "git-graph.openFile",
"title": "Open File",
"icon": "$(go-to-file)",
"enablement": "isInDiffEditor && resourceScheme == git-graph && git-graph:codiconsSupported"
}
],
"configuration": {
"type": "object",
"title": "Git Graph",
"properties": {
"git-graph.commitDetailsView.autoCenter": {
"type": "boolean",
"default": true,
"description": "Automatically center the Commit Details View when it is opened."
},
"git-graph.commitDetailsView.fileView.fileTree.compactFolders": {
"type": "boolean",
"default": true,
"description": "Render the File Tree in the Commit Details View in a compacted form, such that folders with a single child folder are compressed into a single combined folder element."
},
"git-graph.commitDetailsView.fileView.type": {
"type": "string",
"enum": [
"File Tree",
"File List"
],
"enumDescriptions": [
"Display files in a tree structure.",
"Display files in a list (useful for repositories with deep folder structures)."
],
"default": "File Tree",
"description": "Sets the default type of File View used in the Commit Details View. This can be overridden per repository using the controls on the right side of the Commit Details View."
},
"git-graph.commitDetailsView.location": {
"type": "string",
"enum": [
"Inline",
"Docked to Bottom"
],
"enumDescriptions": [
"Show the Commit Details View inline with the graph & commits.",
"Show the Commit Details View docked to the bottom of the Git Graph View."
],
"default": "Inline",
"description": "Specifies where the Commit Details View is rendered in the Git Graph View."
},
"git-graph.contextMenuActionsVisibility": {
"type": "object",
"default": {},
"properties": {
"branch": {
"type": "object",
"properties": {
"checkout": {
"type": "boolean",
"title": "Checkout Branch"
},
"rename": {
"type": "boolean",
"title": "Rename Branch..."
},
"delete": {
"type": "boolean",
"title": "Delete Branch..."
},
"merge": {
"type": "boolean",
"title": "Merge into current branch..."
},
"rebase": {
"type": "boolean",
"title": "Rebase current branch on Branch..."
},
"push": {
"type": "boolean",
"title": "Push Branch..."
},
"viewIssue": {
"type": "boolean",
"title": "View Issue"
},
"createPullRequest": {
"type": "boolean",
"title": "Create Pull Request..."
},
"createArchive": {
"type": "boolean",
"title": "Create Archive"
},
"selectInBranchesDropdown": {
"type": "boolean",
"title": "Select in Branches Dropdown"
},
"unselectInBranchesDropdown": {
"type": "boolean",
"title": "Unselect in Branches Dropdown"
},
"copyName": {
"type": "boolean",
"title": "Copy Branch Name to Clipboard"
}
}
},
"commit": {
"type": "object",
"properties": {
"addTag": {
"type": "boolean",
"title": "Add Tag..."
},
"createBranch": {
"type": "boolean",
"title": "Create Branch..."
},
"checkout": {
"type": "boolean",
"title": "Checkout..."
},
"cherrypick": {
"type": "boolean",
"title": "Cherry Pick..."
},
"revert": {
"type": "boolean",
"title": "Revert..."
},
"drop": {
"type": "boolean",
"title": "Drop..."
},
"merge": {
"type": "boolean",
"title": "Merge into current branch..."
},
"rebase": {
"type": "boolean",
"title": "Rebase current branch on this Commit..."
},
"reset": {
"type": "boolean",
"title": "Reset current branch to this Commit..."
},
"copyHash": {
"type": "boolean",
"title": "Copy Commit Hash to Clipboard"
},
"copySubject": {
"type": "boolean",
"title": "Copy Commit Subject to Clipboard"
}
}
},
"commitDetailsViewFile": {
"type": "object",
"properties": {
"viewDiff": {
"type": "boolean",
"title": "View Diff"
},
"viewFileAtThisRevision": {
"type": "boolean",
"title": "View File at this Revision"
},
"viewDiffWithWorkingFile": {
"type": "boolean",
"title": "View Diff with Working File"
},
"openFile": {
"type": "boolean",
"title": "Open File"
},
"markAsReviewed": {
"type": "boolean",
"title": "Mark as Reviewed"
},
"markAsNotReviewed": {
"type": "boolean",
"title": "Mark as Not Reviewed"
},
"resetFileToThisRevision": {
"type": "boolean",
"title": "Reset File to this Revision..."
},
"copyAbsoluteFilePath": {
"type": "boolean",
"title": "Copy Absolute File Path to Clipboard"
},
"copyRelativeFilePath": {
"type": "boolean",
"title": "Copy Relative File Path to Clipboard"
}
}
},
"remoteBranch": {
"type": "object",
"properties": {
"checkout": {
"type": "boolean",
"title": "Checkout Branch..."
},
"delete": {
"type": "boolean",
"title": "Delete Remote Branch..."
},
"fetch": {
"type": "boolean",
"title": "Fetch into local branch..."
},
"merge": {
"type": "boolean",
"title": "Merge into current branch..."
},
"pull": {
"type": "boolean",
"title": "Pull into current branch..."
},
"viewIssue": {
"type": "boolean",
"title": "View Issue"
},
"createPullRequest": {
"type": "boolean",
"title": "Create Pull Request"
},
"createArchive": {
"type": "boolean",
"title": "Create Archive"
},
"selectInBranchesDropdown": {
"type": "boolean",
"title": "Select in Branches Dropdown"
},
"unselectInBranchesDropdown": {
"type": "boolean",
"title": "Unselect in Branches Dropdown"
},
"copyName": {
"type": "boolean",
"title": "Copy Branch Name to Clipboard"
}
}
},
"stash": {
"type": "object",
"properties": {
"apply": {
"type": "boolean",
"title": "Apply Stash..."
},
"createBranch": {
"type": "boolean",
"title": "Create Branch from Stash..."
},
"pop": {
"type": "boolean",
"title": "Pop Stash..."
},
"drop": {
"type": "boolean",
"title": "Drop Stash..."
},
"copyName": {
"type": "boolean",
"title": "Copy Stash Name to Clipboard"
},
"copyHash": {
"type": "boolean",
"title": "Copy Stash Hash to Clipboard"
}
}
},
"tag": {
"type": "object",
"properties": {
"viewDetails": {
"type": "boolean",
"title": "View Details"
},
"delete": {
"type": "boolean",
"title": "Delete Tag..."
},
"push": {
"type": "boolean",
"title": "Push Tag..."
},
"createArchive": {
"type": "boolean",
"title": "Create Archive"
},
"copyName": {
"type": "boolean",
"title": "Copy Tag Name to Clipboard"
}
}
},
"uncommittedChanges": {
"type": "object",
"properties": {
"stash": {
"type": "boolean",
"title": "Stash uncommitted changes..."
},
"reset": {
"type": "boolean",
"title": "Reset uncommitted changes..."
},
"clean": {
"type": "boolean",
"title": "Clean untracked files..."
},
"openSourceControlView": {
"type": "boolean",
"title": "Open Source Control View"
}
}
}
},
"markdownDescription": "Customise which context menu actions are visible. For example, if you want to hide the rebase action from the branch context menu, a suitable value for this setting is `{ \"branch\": { \"rebase\": false } }`. For more information of how to configure this setting, view the documentation [here](https://github.com/mhutchie/vscode-git-graph/wiki/Extension-Settings#context-menu-actions-visibility)."
},
"git-graph.customBranchGlobPatterns": {
"type": "array",
"items": {
"type": "object",
"title": "Branch Glob Pattern",
"required": [
"name",
"glob"
],
"properties": {
"name": {
"type": "string",
"title": "Name of pattern",
"description": "Name used to reference the pattern in the 'Branches' dropdown"
},
"glob": {
"type": "string",
"title": "Glob pattern",
"description": "The Glob Pattern <glob-pattern>, as used in 'git log --glob=<glob-pattern>'. For example: heads/feature/*"
}
}
},
"default": [],
"description": "An array of Custom Branch Glob Patterns to be shown in the 'Branches' dropdown. Example: [{\"name\": \"Feature Requests\", \"glob\": \"heads/feature/*\"}]"
},
"git-graph.customEmojiShortcodeMappings": {
"type": "array",
"items": {
"type": "object",
"title": "Custom Emoji Shortcode Mapping",
"required": [
"shortcode",
"emoji"
],
"properties": {
"shortcode": {
"type": "string",
"title": "Emoji Shortcode",
"description": "Emoji Shortcode (e.g. \":sparkles:\")"
},
"emoji": {
"type": "string",
"title": "Emoji",
"description": "Emoji (e.g. \"✨\")"
}
}
},
"default": [],
"description": "An array of custom Emoji Shortcode mappings. Example: [{\"shortcode\": \":sparkles:\", \"emoji\":\"✨\"}]"
},
"git-graph.customPullRequestProviders": {
"type": "array",
"items": {
"type": "object",
"title": "Pull Request Provider",
"required": [
"name",
"templateUrl"
],
"properties": {
"name": {
"type": "string",
"title": "Name of the Provider",
"description": "A unique, identifying, display name for the provider."
},
"templateUrl": {
"type": "string",
"title": "Template URL",
"markdownDescription": "A template URL that can be used to create a Pull Request, after the $1 - $8 variables have been substituted to construct the final URL. For information on how to configure this setting, see the documentation [here](https://github.com/mhutchie/vscode-git-graph/wiki/Configuring-a-custom-Pull-Request-Provider)."
}
}
},
"default": [],
"markdownDescription": "An array of custom Pull Request providers that can be used in the \"Pull Request Creation\" Integration. For information on how to configure this setting, see the documentation [here](https://github.com/mhutchie/vscode-git-graph/wiki/Configuring-a-custom-Pull-Request-Provider)."
},
"git-graph.date.format": {
"type": "string",
"enum": [
"Date & Time",
"Date Only",
"ISO Date & Time",
"ISO Date Only",
"Relative"
],
"enumDescriptions": [
"Show the date and time (e.g. \"24 Mar 2019 21:34\")",
"Show the date only (e.g. \"24 Mar 2019\")",
"Show the ISO date and time (e.g. \"2019-03-24 21:34\")",
"Show the ISO date only (e.g. \"2019-03-24\")",
"Show relative times (e.g. \"5 minutes ago\")"
],
"default": "Date & Time",
"description": "Specifies the date format to be used in the \"Date\" column on the Git Graph View."
},
"git-graph.date.type": {
"type": "string",
"enum": [
"Author Date",
"Commit Date"
],
"enumDescriptions": [
"Use the author date of a commit.",
"Use the committer date of a commit."
],
"default": "Author Date",
"description": "Specifies the date type to be displayed in the \"Date\" column on the Git Graph View."
},
"git-graph.defaultColumnVisibility": {
"type": "object",
"properties": {
"Date": {
"type": "boolean",
"title": "Visibility of the Date column"
},
"Author": {
"type": "boolean",
"title": "Visibility of the Author column"
},
"Commit": {
"type": "boolean",
"title": "Visibility of the Commit column"
}
},
"default": {
"Date": true,
"Author": true,
"Commit": true
},
"description": "An object specifying the default visibility of the Date, Author & Commit columns. Example: {\"Date\": true, \"Author\": true, \"Commit\": true}"
},
"git-graph.dialog.addTag.pushToRemote": {
"type": "boolean",
"default": false,
"description": "Default state of the field indicating whether the tag should be pushed to a remote once it is added."
},
"git-graph.dialog.addTag.type": {
"type": "string",
"enum": [
"Annotated",
"Lightweight"
],
"default": "Annotated",
"description": "Default type of the tag being added."
},
"git-graph.dialog.applyStash.reinstateIndex": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Reinstate Index\" checkbox."
},
"git-graph.dialog.cherryPick.noCommit": {
"type": "boolean",
"default": false,
"description": "Default state of the \"No Commit\" checkbox."
},
"git-graph.dialog.cherryPick.recordOrigin": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Record Origin\" checkbox."
},
"git-graph.dialog.createBranch.checkOut": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Check out\" checkbox."
},
"git-graph.dialog.deleteBranch.forceDelete": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Force Delete\" checkbox."
},
"git-graph.dialog.fetchIntoLocalBranch.forceFetch": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Force Fetch\" checkbox."
},
"git-graph.dialog.fetchRemote.prune": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Prune\" checkbox."
},
"git-graph.dialog.fetchRemote.pruneTags": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Prune Tags\" checkbox."
},
"git-graph.dialog.general.referenceInputSpaceSubstitution": {
"type": "string",
"enum": [
"None",
"Hyphen",
"Underscore"
],
"enumDescriptions": [
"Don't replace spaces.",
"Replace space characters with hyphens, for example: \"new branch\" -> \"new-branch\".",
"Replace space characters with underscores, for example: \"new branch\" -> \"new_branch\"."
],
"default": "None",
"description": "Specifies a substitution that is automatically performed when space characters are entered or pasted into reference inputs on dialogs (e.g. Create Branch, Add Tag, etc.)."
},
"git-graph.dialog.merge.noCommit": {
"type": "boolean",
"default": false,
"description": "Default state of the \"No Commit\" checkbox."
},
"git-graph.dialog.merge.noFastForward": {
"type": "boolean",
"default": true,
"description": "Default state of the \"Create a new commit even if fast-forward is possible\" checkbox."
},
"git-graph.dialog.merge.squashCommits": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Squash Commits\" checkbox."
},
"git-graph.dialog.merge.squashMessageFormat": {
"type": "string",
"enum": [
"Default",
"Git SQUASH_MSG"
],
"enumDescriptions": [
"Use the squash message generated by Git Graph.",
"Use the detailed squash message generated by Git (stored in .git/SQUASH_MSG)."
],
"default": "Default",
"description": "Specifies the message format used for the squashed commit (when the \"Squash Commits\" option is selected)."
},
"git-graph.dialog.popStash.reinstateIndex": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Reinstate Index\" checkbox."
},
"git-graph.dialog.pullBranch.noFastForward": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Create a new commit even if fast-forward is possible\" checkbox."
},
"git-graph.dialog.pullBranch.squashCommits": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Squash Commits\" checkbox."
},
"git-graph.dialog.pullBranch.squashMessageFormat": {
"type": "string",
"enum": [
"Default",
"Git SQUASH_MSG"
],
"enumDescriptions": [
"Use the squash message generated by Git Graph.",
"Use the detailed squash message generated by Git (stored in .git/SQUASH_MSG)."
],
"default": "Default",
"description": "Specifies the message format used for the squashed commit (when the \"Squash Commits\" option is selected)."
},
"git-graph.dialog.rebase.ignoreDate": {
"type": "boolean",
"default": true,
"description": "Default state of the \"Ignore Date (non-interactive rebase only)\" checkbox."
},
"git-graph.dialog.rebase.launchInteractiveRebase": {
"type": "boolean",
"default": false,
"description": "Default state of the \"Launch Interactive Rebase in new Terminal\" checkbox."
},
"git-graph.dialog.resetCurrentBranchToCommit.mode": {
"type": "string",
"enum": [
"Soft",
"Mixed",
"Hard"
],
"enumDescriptions": [
"Soft - Keep all changes, but reset head",
"Mixed - Keep working tree, but reset index",
"Hard - Discard all changes"
],
"default": "Mixed",
"description": "Default mode to be used for the reset action."
},
"git-graph.dialog.resetUncommittedChanges.mode": {
"type": "string",
"enum": [
"Mixed",
"Hard"
],
"enumDescriptions": [
"Mixed - Keep working tree, but reset index",
"Hard - Discard all changes"
],
"default": "Mixed",
"description": "Default mode to be used for the reset action."
},
"git-graph.dialog.stashUncommittedChanges.includeUntracked": {
"type": "boolean",
"default": true,
"description": "Default state of the \"Include Untracked\" checkbox."
},
"git-graph.enhancedAccessibility": {
"type": "boolean",
"default": false,
"description": "Visual file change A|M|D|R|U indicators in the Commit Details View for users with colour blindness. In the future, this setting will enable any additional accessibility related features of Git Graph that aren't enabled by default."
},
"git-graph.fileEncoding": {
"type": "string",
"default": "utf8",
"markdownDescription": "The character set encoding used when retrieving a specific version of repository files (e.g. in the Diff View). A list of all supported encodings can be found [here](https://github.com/ashtuchkin/iconv-lite/wiki/Supported-Encodings).",
"scope": "resource"
},
"git-graph.graph.colours": {
"type": "array",
"items": {
"type": "string",
"description": "Colour (HEX or RGB)",
"pattern": "^\\s*(#[0-9a-fA-F]{6}|#[0-9a-fA-F]{8}|rgb[a]?\\s*\\(\\d{1,3},\\s*\\d{1,3},\\s*\\d{1,3}\\))\\s*$"
},
"default": [
"#0085d9",
"#d9008f",
"#00d90a",
"#d98500",
"#a300d9",
"#ff0000",
"#00d9cc",
"#e138e8",
"#85d900",
"#dc5b23",
"#6f24d6",
"#ffcc00"
],
"description": "Specifies the colours used on the graph."
},
"git-graph.graph.style": {
"type": "string",
"enum": [
"rounded",
"angular"
],
"enumDescriptions": [
"Use smooth curves when transitioning between branches on the graph.",
"Use angular lines when transitioning between branches on the graph."
],
"default": "rounded",
"description": "Specifies the style of the graph."
},
"git-graph.graph.uncommittedChanges": {
"type": "string",
"enum": [
"Open Circle at the Uncommitted Changes",
"Open Circle at the Checked Out Commit"
],
"enumDescriptions": [
"Display the Uncommitted Changes as a grey open circle, connected to the commit referenced by HEAD with a solid grey line. The current file system's state is therefore always displayed as an open circle.",
"Display the Uncommitted Changes as a grey closed circle, connected to the commit referenced by HEAD with a dotted grey line. The commit referenced by HEAD is therefore always displayed as an open circle."
],
"default": "Open Circle at the Uncommitted Changes",
"description": "Specifies how the Uncommitted Changes are displayed on the graph."
},
"git-graph.integratedTerminalShell": {
"type": "string",
"default": "",
"description": "Specifies the path and filename of the Shell executable to be used by the Visual Studio Code Integrated Terminal, when it is opened by Git Graph. For example, to use Git Bash on Windows this setting would commonly be set to \"C:\\Program Files\\Git\\bin\\bash.exe\". If this setting is left blank, the default Shell is used.",
"scope": "machine"
},
"git-graph.keyboardShortcut.find": {
"type": "string",
"enum": [
"UNASSIGNED",
"CTRL/CMD + A",
"CTRL/CMD + B",
"CTRL/CMD + C",
"CTRL/CMD + D",
"CTRL/CMD + E",
"CTRL/CMD + F",
"CTRL/CMD + G",
"CTRL/CMD + H",
"CTRL/CMD + I",
"CTRL/CMD + J",
"CTRL/CMD + K",
"CTRL/CMD + L",
"CTRL/CMD + M",
"CTRL/CMD + N",
"CTRL/CMD + O",
"CTRL/CMD + P",
"CTRL/CMD + Q",
"CTRL/CMD + R",
"CTRL/CMD + S",
"CTRL/CMD + T",
"CTRL/CMD + U",
"CTRL/CMD + V",
"CTRL/CMD + W",
"CTRL/CMD + X",
"CTRL/CMD + Y",
"CTRL/CMD + Z"
],
"default": "CTRL/CMD + F",
"description": "The keybinding for the keyboard shortcut that opens the Find Widget in the Git Graph View."
},
"git-graph.keyboardShortcut.refresh": {
"type": "string",
"enum": [
"UNASSIGNED",
"CTRL/CMD + A",
"CTRL/CMD + B",
"CTRL/CMD + C",
"CTRL/CMD + D",
"CTRL/CMD + E",
"CTRL/CMD + F",
"CTRL/CMD + G",
"CTRL/CMD + H",
"CTRL/CMD + I",
"CTRL/CMD + J",
"CTRL/CMD + K",
"CTRL/CMD + L",
"CTRL/CMD + M",
"CTRL/CMD + N",
"CTRL/CMD + O",
"CTRL/CMD + P",
"CTRL/CMD + Q",
"CTRL/CMD + R",
"CTRL/CMD + S",
"CTRL/CMD + T",
"CTRL/CMD + U",
"CTRL/CMD + V",
"CTRL/CMD + W",
"CTRL/CMD + X",
"CTRL/CMD + Y",
"CTRL/CMD + Z"
],
"default": "CTRL/CMD + R",
"description": "The keybinding for the keyboard shortcut that refreshes the Git Graph View."
},
"git-graph.keyboardShortcut.scrollToHead": {
"type": "string",
"enum": [
"UNASSIGNED",
"CTRL/CMD + A",
"CTRL/CMD + B",
"CTRL/CMD + C",
"CTRL/CMD + D",
"CTRL/CMD + E",
"CTRL/CMD + F",
"CTRL/CMD + G",
"CTRL/CMD + H",
"CTRL/CMD + I",
"CTRL/CMD + J",
"CTRL/CMD + K",
"CTRL/CMD + L",
"CTRL/CMD + M",
"CTRL/CMD + N",
"CTRL/CMD + O",
"CTRL/CMD + P",
"CTRL/CMD + Q",
"CTRL/CMD + R",
"CTRL/CMD + S",
"CTRL/CMD + T",
"CTRL/CMD + U",
"CTRL/CMD + V",
"CTRL/CMD + W",
"CTRL/CMD + X",
"CTRL/CMD + Y",
"CTRL/CMD + Z"
],
"default": "CTRL/CMD + H",
"description": "The keybinding for the keyboard shortcut that scrolls the Git Graph View to be centered on the commit referenced by HEAD."
},
"git-graph.keyboardShortcut.scrollToStash": {
"type": "string",
"enum": [
"UNASSIGNED",
"CTRL/CMD + A",
"CTRL/CMD + B",
"CTRL/CMD + C",
"CTRL/CMD + D",
"CTRL/CMD + E",
"CTRL/CMD + F",
"CTRL/CMD + G",
"CTRL/CMD + H",
"CTRL/CMD + I",
"CTRL/CMD + J",
"CTRL/CMD + K",
"CTRL/CMD + L",
"CTRL/CMD + M",
"CTRL/CMD + N",
"CTRL/CMD + O",
"CTRL/CMD + P",
"CTRL/CMD + Q",
"CTRL/CMD + R",
"CTRL/CMD + S",
"CTRL/CMD + T",
"CTRL/CMD + U",
"CTRL/CMD + V",
"CTRL/CMD + W",
"CTRL/CMD + X",
"CTRL/CMD + Y",
"CTRL/CMD + Z"
],
"default": "CTRL/CMD + S",
"description": "The keybinding for the keyboard shortcut that scrolls the Git Graph View to the first (or next) stash in the loaded commits. The Shift Key Modifier can be applied to this keybinding to scroll the Git Graph View to the last (or previous) stash in the loaded commits."
},
"git-graph.markdown": {
"type": "boolean",
"default": true,
"description": "Parse and render a frequently used subset of inline Markdown formatting rules in commit messages and tag details (bold, italics, bold & italics, and inline code blocks)."
},
"git-graph.maxDepthOfRepoSearch": {
"type": "number",
"default": 0,
"description": "Specifies the maximum depth of subfolders to search when discovering repositories in the workspace. Note: Sub-repos are not automatically detected when searching subfolders, however they can be manually added by running the command \"Git Graph: Add Git Repository\" in the Command Palette."
},
"git-graph.openNewTabEditorGroup": {
"type": "string",
"enum": [
"Active",
"Beside",
"One",
"Two",
"Three",
"Four",
"Five",
"Six",
"Seven",
"Eight",
"Nine"
],
"enumDescriptions": [
"Open the new tab in the Active Editor Group.",
"Open the new tab beside the Active Editor Group.",
"Open the new tab in the First Editor Group.",
"Open the new tab in the Second Editor Group.",
"Open the new tab in the Third Editor Group.",
"Open the new tab in the Fourth Editor Group.",
"Open the new tab in the Fifth Editor Group.",
"Open the new tab in the Sixth Editor Group.",
"Open the new tab in the Seventh Editor Group.",
"Open the new tab in the Eighth Editor Group.",
"Open the new tab in the Ninth Editor Group."
],
"default": "Active",
"description": "Specifies the Editor Group where Git Graph should open new tabs, when performing the following actions from the Git Graph View: Viewing the Visual Studio Code Diff View, Opening a File, Viewing a File at a Specific Revision."
},
"git-graph.openToTheRepoOfTheActiveTextEditorDocument": {
"type": "boolean",
"default": false,
"description": "Open the Git Graph View to the repository containing the active Text Editor document."
},
"git-graph.referenceLabels.alignment": {
"type": "string",
"enum": [
"Normal",
"Branches (on the left) & Tags (on the right)",
"Branches (aligned to the graph) & Tags (on the right)"
],
"enumDescriptions": [
"Show branch & tag labels on the left of the commit message in the 'Description' column.",
"Show branch labels on the left of the commit message in the 'Description' column, and tag labels on the right.",
"Show branch labels aligned to the graph in the 'Graph' column, and tag labels on the right in the 'Description' column."
],
"default": "Normal",
"description": "Specifies how branch and tag reference labels are aligned for each commit."
},
"git-graph.referenceLabels.combineLocalAndRemoteBranchLabels": {
"type": "boolean",
"default": true,
"description": "Combine local and remote branch labels if they refer to the same branch, and are on the same commit."
},
"git-graph.repository.commits.fetchAvatars": {
"type": "boolean",
"default": false,
"description": "Fetch avatars of commit authors and committers. By enabling this setting, you consent to commit author and committer email addresses being sent GitHub, GitLab or Gravatar, depending on the repositories remote origin."
},
"git-graph.repository.commits.initialLoad": {
"type": "number",
"default": 300,
"description": "Specifies the number of commits to initially load."
},
"git-graph.repository.commits.loadMore": {
"type": "number",
"default": 100,
"description": "Specifies the number of additional commits to load when the \"Load More Commits\" button is pressed, or more commits are automatically loaded."
},
"git-graph.repository.commits.loadMoreAutomatically": {
"type": "boolean",
"default": true,
"description": "When the view has been scrolled to the bottom, automatically load more commits if they exist (instead of having to press the \"Load More Commits\" button)."
},