We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7525051 commit 35ffac5Copy full SHA for 35ffac5
.vscode/tasks.json
@@ -77,6 +77,24 @@
77
"dependsOrder": "sequence",
78
"detail": "Runs commit message lint and whitespace checks in the same order as CI"
79
},
80
+ {
81
+ "label": "git: prune remote branches",
82
+ "type": "shell",
83
+ "command": "git fetch --prune",
84
+ "detail": "Remove stale remote-tracking branches that were deleted on the server.",
85
+ "options": {
86
+ "shell": {
87
+ "executable": "powershell.exe",
88
+ "args": [
89
+ "-NoProfile",
90
+ "-ExecutionPolicy",
91
+ "Bypass",
92
+ "-Command"
93
+ ]
94
+ }
95
+ },
96
+ "problemMatcher": []
97
98
{
99
"label": "COPILOT: Detect updates needed",
100
"type": "shell",
0 commit comments