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
This commit is contained in:
28
.gitignore
vendored
28
.gitignore
vendored
@@ -1,5 +1,6 @@
|
|||||||
# Build artifacts
|
# Build artifacts
|
||||||
/build/
|
/build/
|
||||||
|
**/target/
|
||||||
|
|
||||||
# CMake
|
# CMake
|
||||||
CMakeFiles/
|
CMakeFiles/
|
||||||
@@ -7,21 +8,42 @@ CMakeCache.txt
|
|||||||
cmake-build-*/
|
cmake-build-*/
|
||||||
Makefile
|
Makefile
|
||||||
*.cmake
|
*.cmake
|
||||||
|
!CMakeLists.txt
|
||||||
compile_commands.json
|
compile_commands.json
|
||||||
install_manifest.txt
|
install_manifest.txt
|
||||||
|
|
||||||
# Rust bridge target
|
# Compiled binaries
|
||||||
/bridge/target/
|
*.o
|
||||||
|
*.so
|
||||||
|
*.a
|
||||||
|
*.exe
|
||||||
|
*.dll
|
||||||
|
*.dylib
|
||||||
|
stardust-overte-client
|
||||||
|
stardust-tests
|
||||||
|
|
||||||
|
# Rust
|
||||||
|
Cargo.lock
|
||||||
|
**/target/
|
||||||
|
**/*.rs.bk
|
||||||
|
**/debug/
|
||||||
|
**/release/
|
||||||
|
|
||||||
# IDE/editor
|
# IDE/editor
|
||||||
.vscode/
|
.vscode/
|
||||||
.idea/
|
.idea/
|
||||||
*.user
|
*.user
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
# Logs
|
# Logs
|
||||||
*.log
|
*.log
|
||||||
|
|
||||||
# Temporary
|
# Temporary
|
||||||
*.tmp
|
*.tmp
|
||||||
*.swp
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
# Third-party directories (not tracked as submodules)
|
||||||
|
/third_party/molecules/
|
||||||
|
/third_party/overte-src/
|
||||||
|
|||||||
Reference in New Issue
Block a user