Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jarro2783/cxxopts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEyal Rozenberg <eyalroz1@gmx.com>2022-07-10 12:03:25 +0300
committerGitHub <noreply@github.com>2022-07-10 12:03:25 +0300
commit8d18c3ed0b5b92a8c521f84da579e67da0b2934b (patch)
tree70581bda947c401a19eed2c7abb18c580ca4ccf9
parent7474a66ef6e26701e1b4be5428ab3e1ffada9c21 (diff)
Expanded `.gitignore` coverage. (#344)
-rw-r--r--.gitignore78
1 files changed, 73 insertions, 5 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*/
+*.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
-Makefile
CMakeFiles/
-Testing/
-CTestTestfile.cmake
cmake_install.cmake
-bazel-*
+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
+