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: schema/plugin.json
+12-6Lines changed: 12 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,23 +5,29 @@
5
5
"description": "jupyterlab-git settings.",
6
6
"type": "object",
7
7
"properties": {
8
+
"disableBranchWithChanges": {
9
+
"type": "boolean",
10
+
"title": "Disable branch with changes",
11
+
"description": "Disable all branch operations (new, switch) when there are changed/staged files",
12
+
"default": false
13
+
},
8
14
"historyCount": {
9
15
"type": "integer",
10
16
"title": "History count",
11
17
"description": "Number of (most recent) commits shown in the history log",
12
18
"default": 25
13
19
},
14
-
"simpleStaging": {
15
-
"type": "boolean",
16
-
"title": "Simple staging flag",
17
-
"description": "If true, use a simplified concept of staging. Only files with changes are shown (instead of showing staged/changed/untracked), and all files with changes will be automatically staged",
18
-
"default": false
19
-
},
20
20
"refreshInterval": {
21
21
"type": "integer",
22
22
"title": "Refresh interval",
23
23
"description": "Number of milliseconds between polling the file system for changes.",
24
24
"default": 3000
25
+
},
26
+
"simpleStaging": {
27
+
"type": "boolean",
28
+
"title": "Simple staging flag",
29
+
"description": "If true, use a simplified concept of staging. Only files with changes are shown (instead of showing staged/changed/untracked), and all files with changes will be automatically staged",
0 commit comments