You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -447,6 +447,34 @@
447
447
],
448
448
"description": "Specifies the starting view (mode) of the `GitLens` custom view\n `history` - shows the commit history of the active file\n `repository` - shows a repository explorer"
449
449
},
450
+
"gitlens.remotes": {
451
+
"type": "array",
452
+
"default": null,
453
+
"items": {
454
+
"type": "object",
455
+
"required": [
456
+
"type",
457
+
"domain"
458
+
],
459
+
"properties": {
460
+
"type": {
461
+
"type": "string",
462
+
"enum": [
463
+
"Bitbucket",
464
+
"GitHub",
465
+
"GitLab"
466
+
],
467
+
"description": "Specifies the type of the custom remote service\n `Bitbucket`, `GitHub`, or `GitLab`"
468
+
},
469
+
"domain": {
470
+
"type": "string",
471
+
"description": "Specifies the domain name of the custom remote service"
472
+
}
473
+
}
474
+
},
475
+
"uniqueItems": true,
476
+
"description": "Specifies the custom remote services (code-hosting)"
0 commit comments