From f2a947e5f1a4328faa70ca019cb25d0fd4621549 Mon Sep 17 00:00:00 2001 From: yeti Date: Fri, 16 May 2025 13:08:32 +0100 Subject: [PATCH] chore: add task to delete files ignored by git --- .vscode/tasks.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 997f2c6..8bd163e 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -58,6 +58,13 @@ "command": "${workspaceFolder}/.bin/test-tmux.sh", "problemMatcher": [], "detail": "run tmux with project room as home" + }, + { + "label": "Delete .gitignore files", + "type": "shell", + "command": "git clean -Xfd", + "problemMatcher": [], + "detail": "delete all untracked files listed in .gitignore" } ], "inputs": []