Commit 8d18c3ed0b5b92a8c521f84da579e67da0b2934b
Committed by
GitHub
1 parent
7474a66e
Expanded `.gitignore` coverage. (#344)
Showing
1 changed file
with
73 additions
and
5 deletions
.gitignore
| 1 | +syntax: glob | |
| 2 | + | |
| 3 | +# Temporary, cache, swap files | |
| 4 | +\#\#* | |
| 1 | 5 | *.swp |
| 2 | -build*/ | |
| 6 | +*.bkp | |
| 7 | + | |
| 8 | +# Files which "ask" to be hidden | |
| 9 | +*~ | |
| 10 | +.* | |
| 11 | +unused/ | |
| 12 | + | |
| 13 | +# Build artifacts | |
| 14 | +*.a | |
| 15 | +*.o | |
| 16 | +*.so | |
| 17 | +*.ptx | |
| 18 | +bin/* | |
| 19 | +lib/* | |
| 20 | +build/ | |
| 21 | +build-*/ | |
| 22 | +bazel-* | |
| 23 | + | |
| 24 | +# Core dumps | |
| 25 | +core | |
| 26 | +core.* | |
| 27 | +core-* | |
| 28 | + | |
| 29 | +# CMake & CTest-generated files | |
| 3 | 30 | CMakeCache.txt |
| 4 | -Makefile | |
| 5 | 31 | CMakeFiles/ |
| 6 | -Testing/ | |
| 7 | -CTestTestfile.cmake | |
| 8 | 32 | cmake_install.cmake |
| 9 | -bazel-* | |
| 33 | +CMakeScripts/* | |
| 34 | +CMakeTmp/* | |
| 35 | +Makefile | |
| 36 | +CTestTestfile.cmake | |
| 37 | +Testing/ | |
| 38 | + | |
| 39 | +# Eclise IDE-related files | |
| 40 | +.project | |
| 41 | +.cproject | |
| 42 | +.settings | |
| 43 | + | |
| 44 | +# CLion IDE-related files | |
| 45 | +.idea/ | |
| 46 | +cmake-build-*/ | |
| 47 | + | |
| 48 | +# Patching | |
| 49 | +*.diff | |
| 50 | +*.rej | |
| 51 | +*.orig | |
| 52 | + | |
| 53 | +# Files/folders downloaded from other repositories as part of the build | |
| 54 | +external/* | |
| 55 | +third-party/* | |
| 56 | + | |
| 57 | +# Miscellaneous | |
| 58 | +tags | |
| 59 | +log | |
| 60 | +*.log | |
| 61 | +*.v3breakpoints | |
| 62 | +gmon.out | |
| 63 | +.DS_Store | |
| 64 | + | |
| 65 | +# Doxygen | |
| 66 | +doxygen.log | |
| 67 | +Doxyfile | |
| 68 | +docs/ | |
| 69 | + | |
| 70 | +# Archives | |
| 71 | +*.zip | |
| 72 | +*.gz | |
| 73 | +*.bz2 | |
| 74 | +*.tgz | |
| 75 | +*.tar | |
| 76 | +*.xz | |
| 77 | + | ... | ... |