55 lines · plain
1#==============================================================================#2# The 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# 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*.orig16# Byte compiled python modules.17*.pyc18*.pyproj19# pyenv settings20.python-version21*.sln22*.suo23# vim swap files24.*.swp25.sw?26# OS X specific files.27.DS_store28DerivedData/29*.noindex30 31# Remote build configuration files.32.remote-build.conf33 34build/35pyproj/36llvm-build/37ninja/38*xcuserdata39test/20*40__pycache__/41 42clang-module-cache43 44# Skip ctags-style tags files45tags46 47# We should ignore Xcode-style embedding of llvm/ at lldb root dir.48# Do not add trailing '/'s, they skip symlinks.49/llvm50/DerivedData51 52# Ignore test trace directories.5320??-??-??-??_??_??/54 55