-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
1539 lines (1539 loc) · 59.8 KB
/
package.json
File metadata and controls
1539 lines (1539 loc) · 59.8 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
{
"name": "git-graph-zh",
"displayName": "Git Graph汉化版",
"version": "1.0.8",
"publisher": "SKIPPINGpetticoatconvent",
"author": {
"name": "Dewar Nicholas",
"email": "SKIPPINGpetticoatconvent@proton.me"
},
"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/SKIPPINGpetticoatconvent/vscode-git-graph-zh",
"repository": {
"type": "git",
"url": "https://github.com/SKIPPINGpetticoatconvent/vscode-git-graph-zh.git"
},
"bugs": {
"url": "https://github.com/SKIPPINGpetticoatconvent/vscode-git-graph-zh/issues"
},
"qna": "https://github.com/SKIPPINGpetticoatconvent/vscode-git-graph-zh/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": "查看 Git 图表 (git log)",
"icon": {
"light": "resources/cmd-icon-light.svg",
"dark": "resources/cmd-icon-dark.svg"
}
},
{
"category": "Git Graph",
"command": "git-graph.addGitRepository",
"title": "添加 Git 仓库..."
},
{
"category": "Git Graph",
"command": "git-graph.clearAvatarCache",
"title": "清除头像缓存"
},
{
"category": "Git Graph",
"command": "git-graph.endAllWorkspaceCodeReviews",
"title": "结束工作区中的所有代码审查"
},
{
"category": "Git Graph",
"command": "git-graph.endSpecificWorkspaceCodeReview",
"title": "结束工作区中特定的代码审查..."
},
{
"category": "Git Graph",
"command": "git-graph.fetch",
"title": "从远程仓库拉取"
},
{
"category": "Git Graph",
"command": "git-graph.removeGitRepository",
"title": "移除 Git 仓库..."
},
{
"category": "Git Graph",
"command": "git-graph.resumeWorkspaceCodeReview",
"title": "恢复工作区中特定的代码审查..."
},
{
"category": "Git Graph",
"command": "git-graph.version",
"title": "获取版本信息"
},
{
"category": "Git Graph",
"command": "git-graph.openFile",
"title": "打开文件",
"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": "在打开时自动居中提交详情视图。"
},
"git-graph.commitDetailsView.fileView.fileTree.compactFolders": {
"type": "boolean",
"default": true,
"description": "以紧凑形式渲染提交详情视图中的文件树,将只有一个子文件夹的文件夹压缩为单个组合文件夹元素。"
},
"git-graph.commitDetailsView.fileView.type": {
"type": "string",
"enum": [
"File Tree",
"File List"
],
"enumDescriptions": [
"以树状结构显示文件。",
"以列表形式显示文件(适用于具有深层文件夹结构的仓库)。"
],
"default": "File Tree",
"description": "设置提交详情视图中使用的默认文件视图类型。可以使用提交详情视图右侧的控件为每个仓库覆盖此设置。"
},
"git-graph.commitDetailsView.location": {
"type": "string",
"enum": [
"Inline",
"Docked to Bottom"
],
"enumDescriptions": [
"内联显示提交详情视图与图表和提交。",
"将提交详情视图停靠在 Git 图表视图的底部。"
],
"default": "Inline",
"description": "指定提交详情视图在 Git 图表视图中的渲染位置。"
},
"git-graph.contextMenuActionsVisibility": {
"type": "object",
"default": {},
"properties": {
"branch": {
"type": "object",
"properties": {
"checkout": {
"type": "boolean",
"title": "检出分支"
},
"rename": {
"type": "boolean",
"title": "重命名分支..."
},
"delete": {
"type": "boolean",
"title": "删除分支..."
},
"merge": {
"type": "boolean",
"title": "合并到当前分支..."
},
"rebase": {
"type": "boolean",
"title": "将当前分支变基到此分支..."
},
"push": {
"type": "boolean",
"title": "推送分支..."
},
"viewIssue": {
"type": "boolean",
"title": "查看问题"
},
"createPullRequest": {
"type": "boolean",
"title": "创建拉取请求..."
},
"createArchive": {
"type": "boolean",
"title": "创建归档"
},
"selectInBranchesDropdown": {
"type": "boolean",
"title": "在分支下拉菜单中选择"
},
"unselectInBranchesDropdown": {
"type": "boolean",
"title": "在分支下拉菜单中取消选择"
},
"copyName": {
"type": "boolean",
"title": "复制分支名称到剪贴板"
}
}
},
"commit": {
"type": "object",
"properties": {
"addTag": {
"type": "boolean",
"title": "添加标签..."
},
"createBranch": {
"type": "boolean",
"title": "创建分支..."
},
"checkout": {
"type": "boolean",
"title": "检出..."
},
"cherrypick": {
"type": "boolean",
"title": "拣选..."
},
"revert": {
"type": "boolean",
"title": "撤销..."
},
"drop": {
"type": "boolean",
"title": "丢弃..."
},
"merge": {
"type": "boolean",
"title": "合并到当前分支..."
},
"rebase": {
"type": "boolean",
"title": "将当前分支变基到此提交..."
},
"reset": {
"type": "boolean",
"title": "将当前分支重置到此提交..."
},
"copyHash": {
"type": "boolean",
"title": "复制提交哈希到剪贴板"
},
"copySubject": {
"type": "boolean",
"title": "复制提交主题到剪贴板"
}
}
},
"commitDetailsViewFile": {
"type": "object",
"properties": {
"viewDiff": {
"type": "boolean",
"title": "查看差异"
},
"viewFileAtThisRevision": {
"type": "boolean",
"title": "查看此修订版本的文件"
},
"viewDiffWithWorkingFile": {
"type": "boolean",
"title": "查看与工作文件的差异"
},
"openFile": {
"type": "boolean",
"title": "打开文件"
},
"markAsReviewed": {
"type": "boolean",
"title": "标记为已审查"
},
"markAsNotReviewed": {
"type": "boolean",
"title": "标记为未审查"
},
"resetFileToThisRevision": {
"type": "boolean",
"title": "将文件重置到此修订版本..."
},
"copyAbsoluteFilePath": {
"type": "boolean",
"title": "复制绝对文件路径到剪贴板"
},
"copyRelativeFilePath": {
"type": "boolean",
"title": "复制相对文件路径到剪贴板"
}
}
},
"remoteBranch": {
"type": "object",
"properties": {
"checkout": {
"type": "boolean",
"title": "检出分支..."
},
"delete": {
"type": "boolean",
"title": "删除远程分支..."
},
"fetch": {
"type": "boolean",
"title": "获取到本地分支..."
},
"merge": {
"type": "boolean",
"title": "合并到当前分支..."
},
"pull": {
"type": "boolean",
"title": "拉取到当前分支..."
},
"viewIssue": {
"type": "boolean",
"title": "查看问题"
},
"createPullRequest": {
"type": "boolean",
"title": "创建拉取请求"
},
"createArchive": {
"type": "boolean",
"title": "创建归档"
},
"selectInBranchesDropdown": {
"type": "boolean",
"title": "在分支下拉菜单中选择"
},
"unselectInBranchesDropdown": {
"type": "boolean",
"title": "在分支下拉菜单中取消选择"
},
"copyName": {
"type": "boolean",
"title": "复制分支名称到剪贴板"
}
}
},
"stash": {
"type": "object",
"properties": {
"apply": {
"type": "boolean",
"title": "应用储藏..."
},
"createBranch": {
"type": "boolean",
"title": "从储藏创建分支..."
},
"pop": {
"type": "boolean",
"title": "弹出储藏..."
},
"drop": {
"type": "boolean",
"title": "丢弃储藏..."
},
"copyName": {
"type": "boolean",
"title": "复制储藏名称到剪贴板"
},
"copyHash": {
"type": "boolean",
"title": "复制储藏哈希到剪贴板"
}
}
},
"tag": {
"type": "object",
"properties": {
"viewDetails": {
"type": "boolean",
"title": "查看详情"
},
"delete": {
"type": "boolean",
"title": "删除标签..."
},
"push": {
"type": "boolean",
"title": "推送标签..."
},
"createArchive": {
"type": "boolean",
"title": "创建归档"
},
"copyName": {
"type": "boolean",
"title": "复制标签名称到剪贴板"
}
}
},
"uncommittedChanges": {
"type": "object",
"properties": {
"stash": {
"type": "boolean",
"title": "储藏未提交的更改..."
},
"reset": {
"type": "boolean",
"title": "重置未提交的更改..."
},
"clean": {
"type": "boolean",
"title": "清理未跟踪的文件..."
},
"openSourceControlView": {
"type": "boolean",
"title": "打开源代码管理视图"
}
}
}
},
"markdownDescription": "自定义哪些上下文菜单操作是可见的。例如,如果您想从分支上下文菜单中隐藏变基操作,此设置的合适值是 `{ \"branch\": { \"rebase\": false } }`。有关如何配置此设置的更多信息,请查看[此处](https://github.com/mhutchie/vscode-git-graph/wiki/Extension-Settings#context-menu-actions-visibility)的文档。"
},
"git-graph.customBranchGlobPatterns": {
"type": "array",
"items": {
"type": "object",
"title": "分支全局模式",
"required": [
"name",
"glob"
],
"properties": {
"name": {
"type": "string",
"title": "模式名称",
"description": "用于在'分支'下拉菜单中引用模式的名称"
},
"glob": {
"type": "string",
"title": "全局模式",
"description": "全局模式 <glob-pattern>,如 'git log --glob=<glob-pattern>' 中使用的。例如:heads/feature/*"
}
}
},
"default": [],
"description": "要在'分支'下拉菜单中显示的自定义分支全局模式数组。示例:[{\"name\": \"功能请求\", \"glob\": \"heads/feature/*\"}]"
},
"git-graph.customEmojiShortcodeMappings": {
"type": "array",
"items": {
"type": "object",
"title": "自定义表情符号短代码映射",
"required": [
"shortcode",
"emoji"
],
"properties": {
"shortcode": {
"type": "string",
"title": "表情符号短代码",
"description": "表情符号短代码(例如:\":sparkles:\")"
},
"emoji": {
"type": "string",
"title": "表情符号",
"description": "表情符号(例如:\"✨\")"
}
}
},
"default": [],
"description": "自定义表情符号短代码映射数组。示例:[{\"shortcode\": \":sparkles:\", \"emoji\":\"✨\"}]"
},
"git-graph.customPullRequestProviders": {
"type": "array",
"items": {
"type": "object",
"title": "拉取请求提供商",
"required": [
"name",
"templateUrl"
],
"properties": {
"name": {
"type": "string",
"title": "提供商名称",
"description": "提供商的唯一、标识性显示名称。"
},
"templateUrl": {
"type": "string",
"title": "模板 URL",
"markdownDescription": "在 $1 - $8 变量被替换以构建最终 URL 后,可用于创建拉取请求的模板 URL。有关如何配置此设置的信息,请查看[此处](https://github.com/mhutchie/vscode-git-graph/wiki/Configuring-a-custom-Pull-Request-Provider)的文档。"
}
}
},
"default": [],
"markdownDescription": "可在\"拉取请求创建\"集成中使用的自定义拉取请求提供商数组。有关如何配置此设置的信息,请查看[此处](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": [
"显示日期和时间(例如:\"24 Mar 2019 21:34\")",
"仅显示日期(例如:\"24 Mar 2019\")",
"显示 ISO 日期和时间(例如:\"2019-03-24 21:34\")",
"仅显示 ISO 日期(例如:\"2019-03-24\")",
"显示相对时间(例如:\"5 minutes ago\")"
],
"default": "Date & Time",
"description": "指定 Git 图表视图中\"日期\"列使用的日期格式。"
},
"git-graph.date.type": {
"type": "string",
"enum": [
"Author Date",
"Commit Date"
],
"enumDescriptions": [
"使用提交的作者日期。",
"使用提交的提交者日期。"
],
"default": "Author Date",
"description": "指定 Git 图表视图中\"日期\"列显示的日期类型。"
},
"git-graph.defaultColumnVisibility": {
"type": "object",
"properties": {
"Date": {
"type": "boolean",
"title": "日期列的可见性"
},
"Author": {
"type": "boolean",
"title": "作者列的可见性"
},
"Commit": {
"type": "boolean",
"title": "提交列的可见性"
}
},
"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)."
},