Added task to open git UI

This commit is contained in:
kkapsner 2018-10-13 12:30:49 +02:00
parent 5aee6531c9
commit 2a7bb7ff0e
1 changed files with 21 additions and 0 deletions

21
.vscode/tasks.json vendored
View File

@ -130,6 +130,27 @@
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "open git UI",
"type": "shell",
"windows": {
"command": "git-cola"
},
"linux": {
"command": "git-cola"
},
"osx": {
"command": "git-cola"
},
"args": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
}
]
}