Browse Source

Update .gitignore to exclude additional files and directories

- Expanded the .gitignore file to include CMake-related files and directories, such as CMakeCache.txt, CMakeFiles/, and build/ to prevent tracking of build artifacts.
- Added exclusions for log files and IDE-specific files, including .vscode/ and .idea/, to streamline the repository and avoid clutter from temporary files.
- Retained existing exclusions for CSV files while ensuring proper formatting in the .gitignore.
main
mckay 2 months ago
parent
commit
5b61a72ded
  1. 31
      .gitignore

31
.gitignore

@ -133,4 +133,33 @@ data_backup/
data/
exps/
summary/
*.csv
*.csv
# CMake
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
CMakeScripts/
Testing/
Makefile
*.cmake
!CMakeLists.txt
compile_commands.json
CTestTestfile.cmake
_deps/
build/
# Logs
*.log
log/
logs/
*.log.*
.log
.logs/
# IDE specific
.vscode/
.idea/
*.swp
*.swo
*~
Loading…
Cancel
Save