File tree Expand file tree Collapse file tree 1 file changed +84
-0
lines changed
Expand file tree Collapse file tree 1 file changed +84
-0
lines changed Original file line number Diff line number Diff line change 1+ # git-ls-files --others --exclude-from=.git/info/exclude
2+ # Lines that start with '#' are comments.
3+
4+ # Editor and misc backup files - anywhere
5+ * ~
6+ . * ~
7+ * .bak
8+ * .bak [0-9 ][0-9 ]
9+ \# * \#
10+
11+ # File-browser settings - anywhere
12+ .directory
13+
14+ # CVS recovered versions - anywhere
15+ . #*
16+
17+ # Objects and archives - anywhere
18+ * . [oa ]
19+ * .la
20+ * .so
21+
22+ # Derived files
23+ lex.yy.c
24+
25+ # Corefiles
26+ core
27+
28+ # Dependency files - anywhere
29+ * .dep
30+
31+ # lnInclude (symlink) directories - anywhere
32+ lnInclude
33+
34+ # Build directories - anywhere
35+ linux * Clang * /
36+ linux * Gcc * /
37+ linux * Icc * /
38+ solaris * Gcc * /
39+ SunOS * Gcc * /
40+ platforms /
41+
42+ # Reinstate wmake/rules that might look like build directories
43+ ! wmake /rules /* /
44+
45+ # doxygen generated documentation
46+ doc /Doxygen /html
47+ doc /Doxygen /latex
48+ doc /Doxygen /man
49+ doc /Doxygen /DTAGS
50+
51+ # Generated files in the main directory (e.g. ReleaseNotes-?.?.html)
52+ # and in the doc directory
53+ /* .html
54+ /doc /* .html
55+
56+ # Untracked configuration files
57+ /etc /prefs.csh
58+ /etc /prefs.sh
59+ /etc /config.csh /prefs.csh
60+ /etc /config.sh /prefs.sh
61+
62+ # Source packages - anywhere
63+ * .tar.bz2
64+ * .tar.gz
65+ * .tar
66+ * .tgz
67+ * .gtgz
68+
69+ # Ignore the persistent .build tag in the main directory
70+ /.build
71+
72+ # Ignore .timeStamp in the main directory
73+ /.timeStamp
74+
75+ # Ignore .tags in the main directory
76+ /.tags
77+
78+ # Ignore project files in the main directory
79+ /.cproject
80+ /.project
81+ /.dir-locals.el
82+
83+ # Ignore the test directory
84+ /tutorialsTest
You can’t perform that action at this time.
0 commit comments