vscode/extensions/git/package.json

797 lines
23 KiB
JSON
Raw Normal View History

{
2016-10-12 14:37:06 +00:00
"name": "git",
"publisher": "vscode",
"displayName": "git",
"description": "Git",
"version": "0.0.1",
"engines": {
"vscode": "^1.5.0"
},
2017-02-20 18:32:21 +00:00
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
2016-11-24 15:24:32 +00:00
"enableProposedApi": true,
2016-10-12 14:37:06 +00:00
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/main",
"scripts": {
2016-11-23 11:03:23 +00:00
"compile": "gulp compile-extension:git",
"watch": "gulp watch-extension:git"
2016-10-12 14:37:06 +00:00
},
"contributes": {
2016-11-25 12:08:41 +00:00
"commands": [
2017-02-20 14:54:22 +00:00
{
"command": "git.clone",
"title": "%command.clone%",
"category": "Git"
},
2017-02-15 16:46:58 +00:00
{
"command": "git.init",
"title": "%command.init%",
"category": "Git"
2017-02-15 16:46:58 +00:00
},
2016-11-25 12:08:41 +00:00
{
"command": "git.refresh",
2017-01-17 16:38:00 +00:00
"title": "%command.refresh%",
2016-11-25 12:08:41 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/refresh.svg",
"dark": "resources/icons/dark/refresh.svg"
}
2016-11-28 10:08:37 +00:00
},
{
2017-01-09 09:41:33 +00:00
"command": "git.openChange",
2017-01-17 16:38:00 +00:00
"title": "%command.openChange%",
2017-02-09 17:24:08 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/open-change.svg",
"dark": "resources/icons/dark/open-change.svg"
}
2016-12-01 14:12:27 +00:00
},
2017-01-09 09:41:33 +00:00
{
"command": "git.openFile",
2017-01-17 16:38:00 +00:00
"title": "%command.openFile%",
2017-02-09 17:24:08 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/open-file.svg",
"dark": "resources/icons/dark/open-file.svg"
}
2017-01-09 09:41:33 +00:00
},
{
2017-06-26 14:14:29 +00:00
"command": "git.openHEADFile",
"title": "%command.openHEADFile%",
"category": "Git"
},
2016-12-01 14:12:27 +00:00
{
"command": "git.stage",
2017-01-17 16:38:00 +00:00
"title": "%command.stage%",
2016-12-01 15:09:14 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/stage.svg",
"dark": "resources/icons/dark/stage.svg"
}
2016-12-01 14:12:27 +00:00
},
{
2017-01-09 09:47:08 +00:00
"command": "git.stageAll",
2017-01-17 16:38:00 +00:00
"title": "%command.stageAll%",
2016-12-01 15:09:14 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/stage.svg",
"dark": "resources/icons/dark/stage.svg"
}
2016-12-01 14:12:27 +00:00
},
2017-02-17 15:12:13 +00:00
{
"command": "git.stageSelectedRanges",
"title": "%command.stageSelectedRanges%",
"category": "Git"
},
2017-02-17 20:57:24 +00:00
{
"command": "git.revertSelectedRanges",
"title": "%command.revertSelectedRanges%",
"category": "Git"
},
2016-12-01 14:12:27 +00:00
{
"command": "git.unstage",
2017-01-17 16:38:00 +00:00
"title": "%command.unstage%",
2016-12-01 15:09:14 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/unstage.svg",
"dark": "resources/icons/dark/unstage.svg"
}
2016-12-01 14:12:27 +00:00
},
{
2017-01-09 09:47:08 +00:00
"command": "git.unstageAll",
2017-01-17 16:38:00 +00:00
"title": "%command.unstageAll%",
2016-12-01 15:09:14 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/unstage.svg",
"dark": "resources/icons/dark/unstage.svg"
}
2017-01-09 09:41:33 +00:00
},
2017-02-17 15:36:17 +00:00
{
"command": "git.unstageSelectedRanges",
"title": "%command.unstageSelectedRanges%",
"category": "Git"
},
2017-01-09 09:41:33 +00:00
{
"command": "git.clean",
2017-01-17 16:38:00 +00:00
"title": "%command.clean%",
2017-01-09 09:41:33 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/clean.svg",
"dark": "resources/icons/dark/clean.svg"
}
2017-01-09 09:45:37 +00:00
},
{
"command": "git.cleanAll",
2017-01-17 16:38:00 +00:00
"title": "%command.cleanAll%",
2017-01-09 09:45:37 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/clean.svg",
"dark": "resources/icons/dark/clean.svg"
}
2017-01-11 17:56:15 +00:00
},
2017-01-31 10:15:52 +00:00
{
"command": "git.commit",
"title": "%command.commit%",
2017-01-31 15:47:04 +00:00
"category": "Git",
"icon": {
"light": "resources/icons/light/check.svg",
"dark": "resources/icons/dark/check.svg"
}
2017-01-31 10:15:52 +00:00
},
2017-01-11 17:56:15 +00:00
{
2017-01-12 15:08:47 +00:00
"command": "git.commitStaged",
2017-01-17 16:38:00 +00:00
"title": "%command.commitStaged%",
2017-01-12 15:08:47 +00:00
"category": "Git"
},
{
"command": "git.commitStagedSigned",
2017-01-17 16:38:00 +00:00
"title": "%command.commitStagedSigned%",
2017-01-12 15:08:47 +00:00
"category": "Git"
},
2017-06-22 12:22:35 +00:00
{
"command": "git.commitStagedAmend",
"title": "%command.commitStagedAmend%",
"category": "Git"
},
2017-01-12 15:08:47 +00:00
{
"command": "git.commitAll",
2017-01-17 16:38:00 +00:00
"title": "%command.commitAll%",
2017-01-12 15:08:47 +00:00
"category": "Git"
},
{
"command": "git.commitAllSigned",
2017-01-17 16:38:00 +00:00
"title": "%command.commitAllSigned%",
2017-01-12 15:08:47 +00:00
"category": "Git"
},
2017-06-22 12:22:35 +00:00
{
"command": "git.commitAllAmend",
"title": "%command.commitAllAmend%",
"category": "Git"
},
2017-01-12 15:08:47 +00:00
{
"command": "git.undoCommit",
2017-01-17 16:38:00 +00:00
"title": "%command.undoCommit%",
2017-01-12 15:08:47 +00:00
"category": "Git"
},
2017-01-13 10:52:07 +00:00
{
"command": "git.checkout",
2017-01-17 16:38:00 +00:00
"title": "%command.checkout%",
2017-01-13 10:52:07 +00:00
"category": "Git"
},
{
"command": "git.branch",
2017-01-17 16:38:00 +00:00
"title": "%command.branch%",
2017-01-13 10:52:07 +00:00
"category": "Git"
},
2017-05-03 21:53:26 +00:00
{
"command": "git.deleteBranch",
"title": "%command.deleteBranch%",
"category": "Git"
},
{
"command": "git.merge",
"title": "%command.merge%",
"category": "Git"
},
2017-05-20 17:28:00 +00:00
{
"command": "git.createTag",
"title": "%command.createTag%",
"category": "Git"
},
2017-01-12 15:08:47 +00:00
{
"command": "git.pull",
2017-01-17 16:38:00 +00:00
"title": "%command.pull%",
2017-01-12 15:08:47 +00:00
"category": "Git"
},
{
"command": "git.pullRebase",
2017-01-17 16:38:00 +00:00
"title": "%command.pullRebase%",
2017-01-12 15:08:47 +00:00
"category": "Git"
},
2017-05-20 05:48:59 +00:00
{
"command": "git.pullFrom",
"title": "%command.pullFrom%",
2017-05-20 05:48:59 +00:00
"category": "Git"
},
2017-01-12 15:08:47 +00:00
{
"command": "git.push",
2017-01-17 16:38:00 +00:00
"title": "%command.push%",
2017-01-12 15:08:47 +00:00
"category": "Git"
},
{
"command": "git.pushTo",
2017-01-17 16:38:00 +00:00
"title": "%command.pushTo%",
2017-01-11 17:56:15 +00:00
"category": "Git"
2017-01-11 17:59:57 +00:00
},
{
"command": "git.pushWithTags",
"title": "%command.pushWithTags%",
"category": "Git"
},
2017-01-11 17:59:57 +00:00
{
"command": "git.sync",
2017-01-17 16:38:00 +00:00
"title": "%command.sync%",
2017-01-11 17:59:57 +00:00
"category": "Git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.publish",
2017-01-17 16:38:00 +00:00
"title": "%command.publish%",
2017-01-12 15:08:47 +00:00
"category": "Git"
},
{
"command": "git.showOutput",
2017-01-17 16:38:00 +00:00
"title": "%command.showOutput%",
2017-01-12 15:08:47 +00:00
"category": "Git"
2017-05-01 06:31:17 +00:00
},
{
"command": "git.ignore",
"title": "%command.ignore%",
"category": "Git"
2017-06-20 20:54:14 +00:00
},
{
"command": "git.stash",
"title": "%command.stash%",
"category": "Git"
},
{
"command": "git.stashPop",
"title": "%command.stashPop%",
"category": "Git"
},
{
"command": "git.stashPopLatest",
"title": "%command.stashPopLatest%",
"category": "Git"
2016-11-25 12:08:41 +00:00
}
],
"menus": {
2017-02-16 09:23:15 +00:00
"commandPalette": [
{
"command": "git.clone",
"when": "config.git.enabled"
},
2017-02-16 09:23:15 +00:00
{
"command": "git.init",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.refresh",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.openFile",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
},
{
2017-06-26 14:14:29 +00:00
"command": "git.openHEADFile",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
},
{
2017-04-24 09:47:03 +00:00
"command": "git.openChange",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.stage",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.stageAll",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
},
{
"command": "git.stageSelectedRanges",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
},
{
"command": "git.revertSelectedRanges",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.unstage",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.unstageAll",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
},
{
"command": "git.unstageSelectedRanges",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.clean",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.cleanAll",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.commit",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.commitStaged",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.commitStagedSigned",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
2017-06-22 12:22:35 +00:00
{
"command": "git.commitStagedAmend",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-06-22 12:22:35 +00:00
},
2017-02-16 09:23:15 +00:00
{
"command": "git.commitAll",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.commitAllSigned",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
2017-06-22 12:22:35 +00:00
{
"command": "git.commitAllAmend",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-06-22 12:22:35 +00:00
},
2017-02-16 09:23:15 +00:00
{
"command": "git.undoCommit",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.checkout",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.branch",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
2017-05-03 21:53:26 +00:00
{
"command": "git.deleteBranch",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-05-03 21:53:26 +00:00
},
2017-02-16 09:23:15 +00:00
{
"command": "git.pull",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
2017-05-20 05:48:59 +00:00
{
2017-06-26 13:42:53 +00:00
"command": "git.pullFrom",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-05-20 05:48:59 +00:00
},
2017-02-16 09:23:15 +00:00
{
"command": "git.pullRebase",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.pullFrom",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
},
{
"command": "git.merge",
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-06-23 09:16:05 +00:00
},
2017-05-20 17:28:00 +00:00
{
"command": "git.createTag",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-05-20 17:28:00 +00:00
},
2017-02-16 09:23:15 +00:00
{
"command": "git.push",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.pushTo",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.pushWithTags",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.sync",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.publish",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
},
{
"command": "git.showOutput",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
},
{
"command": "git.ignore",
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-06-20 20:54:14 +00:00
},
{
"command": "git.stash",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-06-20 20:54:14 +00:00
},
{
"command": "git.stashPop",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-06-20 20:54:14 +00:00
},
{
"command": "git.stashPopLatest",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0"
2017-02-16 09:23:15 +00:00
}
],
2016-12-05 17:44:12 +00:00
"scm/title": [
2017-08-29 10:09:28 +00:00
{
"command": "git.init",
"group": "navigation",
"when": "config.git.enabled && !scmProvider && gitOpenRepositoryCount == 0"
},
2017-01-31 15:47:04 +00:00
{
"command": "git.commit",
"group": "navigation",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-31 15:47:04 +00:00
},
2016-11-25 12:08:41 +00:00
{
"command": "git.refresh",
2016-12-05 17:44:12 +00:00
"group": "navigation",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.sync",
"group": "1_sync",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.pull",
"group": "1_sync",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.pullRebase",
"group": "1_sync",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
2017-05-20 05:48:59 +00:00
{
"command": "git.pullFrom",
2017-08-23 13:55:41 +00:00
"group": "1_sync",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-05-20 05:48:59 +00:00
},
2017-01-12 15:08:47 +00:00
{
"command": "git.push",
"group": "1_sync",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.pushTo",
"group": "1_sync",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.publish",
"group": "2_publish",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.commitStaged",
"group": "3_commit",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.commitStagedSigned",
"group": "3_commit",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
2017-06-22 12:22:35 +00:00
{
"command": "git.commitStagedAmend",
"group": "3_commit",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-06-22 12:22:35 +00:00
},
2017-01-12 15:08:47 +00:00
{
"command": "git.commitAll",
"group": "3_commit",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.commitAllSigned",
"group": "3_commit",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
2017-06-22 12:22:35 +00:00
{
"command": "git.commitAllAmend",
"group": "3_commit",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-06-22 12:22:35 +00:00
},
2017-01-12 15:08:47 +00:00
{
"command": "git.undoCommit",
"group": "3_commit",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.unstageAll",
"group": "4_stage",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.cleanAll",
"group": "4_stage",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-01-12 15:08:47 +00:00
},
{
"command": "git.showOutput",
2017-06-20 20:54:14 +00:00
"group": "6_output",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-06-20 20:54:14 +00:00
},
{
"command": "git.stash",
"group": "5_stash",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-06-20 20:54:14 +00:00
},
{
"command": "git.stashPop",
"group": "5_stash",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2017-06-20 20:54:14 +00:00
},
{
"command": "git.stashPopLatest",
"group": "5_stash",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git"
2016-12-01 14:12:27 +00:00
}
],
2016-12-05 17:44:12 +00:00
"scm/resourceGroup/context": [
2017-01-11 11:10:48 +00:00
{
"command": "git.stageAll",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == merge",
2017-01-11 11:10:48 +00:00
"group": "1_modification"
},
{
"command": "git.stageAll",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == merge",
2017-01-11 11:10:48 +00:00
"group": "inline"
},
2016-12-01 15:09:14 +00:00
{
2017-01-09 09:47:08 +00:00
"command": "git.unstageAll",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == index",
2017-01-09 09:45:37 +00:00
"group": "1_modification"
2016-12-02 11:25:41 +00:00
},
2016-12-01 14:12:27 +00:00
{
2017-01-09 09:47:08 +00:00
"command": "git.unstageAll",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == index",
2017-01-09 09:45:37 +00:00
"group": "inline"
},
{
"command": "git.cleanAll",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
2017-01-09 09:45:37 +00:00
"group": "1_modification"
2016-12-05 17:44:12 +00:00
},
2016-12-01 15:09:14 +00:00
{
2017-01-09 09:47:08 +00:00
"command": "git.stageAll",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
2017-01-09 09:45:37 +00:00
"group": "1_modification"
},
{
"command": "git.cleanAll",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
2017-01-09 09:45:37 +00:00
"group": "inline"
2016-12-02 11:25:41 +00:00
},
2016-12-01 14:12:27 +00:00
{
2017-01-09 09:47:08 +00:00
"command": "git.stageAll",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
2017-01-09 09:45:37 +00:00
"group": "inline"
2016-12-01 14:12:27 +00:00
}
],
"scm/resourceState/context": [
2017-01-11 11:10:48 +00:00
{
"command": "git.stage",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == merge",
2017-01-11 11:10:48 +00:00
"group": "1_modification"
},
{
"command": "git.stage",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == merge",
2017-01-11 11:10:48 +00:00
"group": "inline"
},
2016-12-01 15:09:14 +00:00
{
2017-01-09 09:41:33 +00:00
"command": "git.openChange",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == index",
2017-01-09 09:45:37 +00:00
"group": "navigation"
2016-12-02 11:25:41 +00:00
},
2016-12-01 14:12:27 +00:00
{
2017-01-09 09:41:33 +00:00
"command": "git.openFile",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == index",
2017-01-09 09:45:37 +00:00
"group": "navigation"
2016-12-05 17:44:12 +00:00
},
{
2017-06-26 14:14:29 +00:00
"command": "git.openHEADFile",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == index",
"group": "navigation"
},
2017-01-09 09:41:33 +00:00
{
"command": "git.unstage",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == index",
2017-01-09 09:41:33 +00:00
"group": "1_modification"
},
{
"command": "git.unstage",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == index",
2017-01-09 09:41:33 +00:00
"group": "inline"
},
{
"command": "git.openChange",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
2017-01-09 09:41:33 +00:00
"group": "navigation"
},
{
2017-06-26 14:14:29 +00:00
"command": "git.openHEADFile",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
"group": "navigation"
},
2017-01-09 09:41:33 +00:00
{
"command": "git.openFile",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
2017-01-09 09:41:33 +00:00
"group": "navigation"
},
2016-12-01 15:09:14 +00:00
{
2016-12-05 17:44:12 +00:00
"command": "git.stage",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
2017-01-09 09:41:33 +00:00
"group": "1_modification"
},
{
"command": "git.clean",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
2017-01-09 09:41:33 +00:00
"group": "1_modification"
},
{
"command": "git.clean",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
2017-01-09 09:41:33 +00:00
"group": "inline"
2016-12-02 11:25:41 +00:00
},
2016-11-28 10:08:37 +00:00
{
2016-12-01 14:12:27 +00:00
"command": "git.stage",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
2017-01-09 09:41:33 +00:00
"group": "inline"
2017-05-01 06:31:17 +00:00
},
{
"command": "git.ignore",
2017-08-15 16:03:47 +00:00
"when": "config.git.enabled && scmProvider == git && scmResourceGroup == workingTree",
2017-05-01 06:31:17 +00:00
"group": "1_modification@3"
2016-11-25 12:08:41 +00:00
}
2017-02-09 17:24:08 +00:00
],
"editor/title": [
{
2017-04-24 09:47:03 +00:00
"command": "git.openFile",
2017-02-09 17:24:08 +00:00
"group": "navigation",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != extension && resourceScheme != merge-conflict.conflict-diff"
2017-02-09 17:24:08 +00:00
},
{
2017-04-24 09:47:03 +00:00
"command": "git.openChange",
2017-02-09 17:24:08 +00:00
"group": "navigation",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0 && !isInDiffEditor && resourceScheme != extension"
2017-04-26 15:55:44 +00:00
},
{
"command": "git.stageSelectedRanges",
"group": "2_git@1",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != merge-conflict.conflict-diff"
2017-04-26 15:55:44 +00:00
},
{
"command": "git.unstageSelectedRanges",
"group": "2_git@2",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != merge-conflict.conflict-diff"
2017-04-26 15:55:44 +00:00
},
{
"command": "git.revertSelectedRanges",
"group": "2_git@3",
2017-08-23 14:25:20 +00:00
"when": "config.git.enabled && gitOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme != merge-conflict.conflict-diff"
2017-02-09 17:24:08 +00:00
}
2016-11-25 12:08:41 +00:00
]
2017-01-31 15:35:00 +00:00
},
"configuration": {
"title": "Git",
"properties": {
2017-02-07 11:03:42 +00:00
"git.enabled": {
"type": "boolean",
"description": "%config.enabled%",
"default": true
},
2017-01-31 15:50:30 +00:00
"git.path": {
2017-01-31 16:06:21 +00:00
"type": [
"string",
"null"
],
2017-01-31 15:50:30 +00:00
"description": "%config.path%",
"default": null,
"isExecutable": true
},
2017-01-31 15:40:05 +00:00
"git.autorefresh": {
"type": "boolean",
"description": "%config.autorefresh%",
"default": true
},
2017-01-31 15:35:00 +00:00
"git.autofetch": {
"type": "boolean",
"description": "%config.autofetch%",
"default": true
2017-01-31 15:54:47 +00:00
},
2017-02-07 09:47:14 +00:00
"git.confirmSync": {
"type": "boolean",
"description": "%config.confirmSync%",
"default": true
},
2017-01-31 16:06:21 +00:00
"git.countBadge": {
"type": "string",
"enum": [
"all",
"tracked",
"off"
],
"description": "%config.countBadge%",
"default": "all"
2017-01-31 16:13:47 +00:00
},
"git.checkoutType": {
"type": "string",
"enum": [
"all",
"local",
"tags",
"remote"
],
"description": "%config.checkoutType%",
"default": "all"
2017-04-13 08:04:48 +00:00
},
"git.ignoreLegacyWarning": {
"type": "boolean",
"description": "%config.ignoreLegacyWarning%",
"default": false
2017-04-19 06:44:16 +00:00
},
"git.ignoreLimitWarning": {
"type": "boolean",
"description": "%config.ignoreLimitWarning%",
"default": false
},
2017-05-04 14:04:30 +00:00
"git.defaultCloneDirectory": {
"type": "string",
"default": null,
2017-05-04 14:04:30 +00:00
"description": "%config.defaultCloneDirectory%"
},
"git.enableSmartCommit": {
"type": "boolean",
"description": "%config.enableSmartCommit%",
"default": false
2017-05-23 12:20:58 +00:00
},
"git.enableCommitSigning": {
"type": "boolean",
"description": "%config.enableCommitSigning%",
"default": false
2017-01-31 15:35:00 +00:00
}
}
2017-01-20 18:50:34 +00:00
}
2016-10-12 14:37:06 +00:00
},
"dependencies": {
"iconv-lite": "0.4.15",
"vscode-extension-telemetry": "0.0.8",
"vscode-nls": "2.0.2"
},
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.4",
"mocha": "^3.2.0"
2016-10-12 14:37:06 +00:00
}
}