From 0855a03b28cf744c6def743125ec01709a3591df Mon Sep 17 00:00:00 2001 From: j4rviscmd Date: Mon, 15 Jun 2026 21:19:32 +0900 Subject: [PATCH] chore(vscode): show .git folder in explorer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit files.exclude の .git を true から false に変更し、エクスプローラーで .git フォルダを表示する。 Co-Authored-By: Claude --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 81b5f78098c3..ae23593f1493 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -40,7 +40,7 @@ "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, "files.exclude": { - ".git": true, + ".git": false, ".build": true, ".profile-oss": true, "**/*.tsbuildinfo": true,