2023-04-27 09:10:08 +03:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2024-05-04 08:57:44 +03:00
|
|
|
"label": "Git: Cleanup",
|
|
|
|
"dependsOn": ["Git: Delete merged branches", "Git: Prune remote"],
|
|
|
|
"problemMatcher": []
|
2023-04-27 09:10:08 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Git: Delete merged branches",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "git delete-merged-branches",
|
|
|
|
"options": {
|
|
|
|
"cwd": "${workspaceFolder}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Git: Prune remote",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "git remote prune origin",
|
|
|
|
"options": {
|
|
|
|
"cwd": "${workspaceFolder}"
|
|
|
|
}
|
|
|
|
}
|
2024-05-04 08:57:44 +03:00
|
|
|
],
|
|
|
|
"inputs": []
|
2023-04-27 09:10:08 +03:00
|
|
|
}
|