From 0ab13cba1a8daae2121100f22d7d6bd45906d9e4 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 19:29:52 -0500 Subject: [PATCH] chore: remove build artifacts from git tracking and improve .gitignore - Remove all Rust target/ build artifacts that were incorrectly committed - Update .gitignore to exclude: - All target/ directories (Rust builds) - Compiled binaries (stardust-overte-client, stardust-tests) - CMake generated files (preserve CMakeLists.txt) - IDE/editor temp files (.swp, .swo, *~) - Third-party source directories (molecules, overte-src) - Add more comprehensive file patterns for compiled artifacts --- .gitignore | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b56079b..bc4f62e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Build artifacts /build/ +**/target/ # CMake CMakeFiles/ @@ -7,21 +8,42 @@ CMakeCache.txt cmake-build-*/ Makefile *.cmake +!CMakeLists.txt compile_commands.json install_manifest.txt -# Rust bridge target -/bridge/target/ +# Compiled binaries +*.o +*.so +*.a +*.exe +*.dll +*.dylib +stardust-overte-client +stardust-tests + +# Rust +Cargo.lock +**/target/ +**/*.rs.bk +**/debug/ +**/release/ # IDE/editor .vscode/ .idea/ *.user +*.swp +*.swo +*~ # Logs *.log # Temporary *.tmp -*.swp .DS_Store + +# Third-party directories (not tracked as submodules) +/third_party/molecules/ +/third_party/overte-src/