From 8d18c3ed0b5b92a8c521f84da579e67da0b2934b Mon Sep 17 00:00:00 2001 From: Eyal Rozenberg Date: Sun, 10 Jul 2022 12:03:25 +0300 Subject: [PATCH] Expanded `.gitignore` coverage. (#344) --- .gitignore | 82 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 75 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 4038fb1..65d8d32 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,77 @@ +syntax: glob + +# Temporary, cache, swap files +\#\#* *.swp -build*/ -CMakeCache.txt -Makefile -CMakeFiles/ -Testing/ -CTestTestfile.cmake -cmake_install.cmake +*.bkp + +# Files which "ask" to be hidden +*~ +.* +unused/ + +# Build artifacts +*.a +*.o +*.so +*.ptx +bin/* +lib/* +build/ +build-*/ bazel-* + +# Core dumps +core +core.* +core-* + +# CMake & CTest-generated files +CMakeCache.txt +CMakeFiles/ +cmake_install.cmake +CMakeScripts/* +CMakeTmp/* +Makefile +CTestTestfile.cmake +Testing/ + +# Eclise IDE-related files +.project +.cproject +.settings + +# CLion IDE-related files +.idea/ +cmake-build-*/ + +# Patching +*.diff +*.rej +*.orig + +# Files/folders downloaded from other repositories as part of the build +external/* +third-party/* + +# Miscellaneous +tags +log +*.log +*.v3breakpoints +gmon.out +.DS_Store + +# Doxygen +doxygen.log +Doxyfile +docs/ + +# Archives +*.zip +*.gz +*.bz2 +*.tgz +*.tar +*.xz +