1#==============================================================================# 2# The file specifies intentionally untracked files that git should ignore. 3# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html 4# 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# File extensions to be ignored anywhere in the tree. 11#==============================================================================# 12# Temp files created by most text editors. 13*~ 14# Merge files created by git. 15*.orig 16# Byte compiled python modules. 17*.pyc 18*.pyproj 19# pyenv settings 20.python-version 21*.sln 22*.suo 23# vim swap files 24.*.swp 25.sw? 26# OS X specific files. 27.DS_store 28DerivedData/ 29*.noindex 30 31# Remote build configuration files. 32.remote-build.conf 33 34build/ 35pyproj/ 36llvm-build/ 37ninja/ 38*xcuserdata 39test/20* 40__pycache__/ 41 42clang-module-cache 43 44# Skip ctags-style tags files 45tags 46 47# We should ignore Xcode-style embedding of llvm/ at lldb root dir. 48# Do not add trailing '/'s, they skip symlinks. 49/llvm 50/DerivedData 51 52# Ignore test trace directories. 5320??-??-??-??_??_??/ 54 55