From 8ca964286de8046667f61ccc23fd5c852c6b7614 Mon Sep 17 00:00:00 2001 From: UnsignedChad <167274875+UnsignedChad@users.noreply.github.com> Date: Wed, 27 May 2026 17:04:49 -0400 Subject: [PATCH] gitignore: add .vs/ and out/ for visual studio users vs writes copilot indexes, file-content caches, and chat history into .vs/ next to the sln. its default cmake configure dumps build output into out/build//. neither belongs in the repo; both kept showing up as 23+ untracked files on every windows checkout. --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 1193780..509adcc 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,8 @@ compile_commands.json *.swp *.swo .DS_Store + +# Visual Studio local workspace state + default CMake out dir +.vs/ +out/ +CMakeSettings.json