From 5b61a72dedaacb83a8ca28042d0c634db22e3d1b Mon Sep 17 00:00:00 2001 From: mckay Date: Sun, 5 Jan 2025 22:18:01 +0800 Subject: [PATCH] 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. --- .gitignore | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c38fdde..e3f0bb7 100644 --- a/.gitignore +++ b/.gitignore @@ -133,4 +133,33 @@ data_backup/ data/ exps/ summary/ -*.csv \ No newline at end of file +*.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 +*~ \ No newline at end of file