]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - .gitignore
Vendor import of lldb trunk r338150:
[FreeBSD/FreeBSD.git] / .gitignore
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
28 DerivedData/
29
30 # Remote build configuration files.
31 .remote-build.conf
32
33 build/
34 pyproj/
35 llvm-build/
36 ninja/
37 *xcuserdata
38 test/20*
39 __pycache__/
40
41 clang-module-cache
42
43 # Skip ctags-style tags files
44 tags
45
46 # We should ignore Xcode-style embedding of llvm/ at lldb root dir.
47 # Do not add trailing '/'s, they skip symlinks.
48 /llvm
49 /DerivedData
50
51 # Ignore test trace directories.
52 20??-??-??-??_??_??/
53