69 lines · plain
1#==============================================================================#2# This file specifies intentionally untracked files that git should ignore.3# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html4#5# This file is intentionally different from the output of `git svn show-ignore`,6# as most of those are useless.7#==============================================================================#8 9#==============================================================================#10# Nested build directory.11#==============================================================================#12/build13 14#==============================================================================#15# Explicit files to ignore (only matches one).16#==============================================================================#17# Various tag programs18/tags19/TAGS20/GPATH21/GRTAGS22/GSYMS23/GTAGS24.gitusers25autom4te.cache26cscope.files27cscope.out28autoconf/aclocal.m429autoconf/autom4te.cache30/compile_commands.json31# Visual Studio built-in CMake configuration32/CMakeSettings.json33# CLion project configuration34/.idea35/cmake-build*36# Qt Creator project configuration37/CMakeLists.txt.user38 39#==============================================================================#40# Directories to ignore (do not add trailing '/'s, they skip symlinks).41#==============================================================================#42# External projects that are tracked independently.43projects/*44!projects/*.*45!projects/Makefile46runtimes/*47!runtimes/*.*48# Sphinx build tree, if building in-source dir.49docs/_build50# VS2017 and VSCode config files.51.vscode52.vs53 54#==============================================================================#55# File extensions to be ignored anywhere in the tree.56# Placed at the end to override any previous ! patterns.57#==============================================================================#58# Temp files created by most text editors.59*~60# Merge files created by git.61*.orig62# Byte compiled python modules.63*.pyc64# vim swap files65.*.sw?66.sw?67#OS X specific files.68.DS_store69