-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore compilation files by means of .gitignore
- Loading branch information
Dries Allaerts
committed
Feb 6, 2019
1 parent
b3b9dbe
commit c7bc2f8
Showing
1 changed file
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# git-ls-files --others --exclude-from=.git/info/exclude | ||
# Lines that start with '#' are comments. | ||
|
||
# Editor and misc backup files - anywhere | ||
*~ | ||
.*~ | ||
.*.swp | ||
*.bak | ||
*.bak[0-9][0-9] | ||
\#*\# | ||
|
||
# File-browser settings - anywhere | ||
.directory | ||
|
||
# CVS recovered versions - anywhere | ||
.#* | ||
|
||
# Objects and archives - anywhere | ||
*.[oa] | ||
*.la | ||
*.so | ||
|
||
# Derived files | ||
lex.yy.c | ||
|
||
# Corefiles | ||
core | ||
|
||
# Dependency files - anywhere | ||
*.dep | ||
|
||
# lnInclude (symlink) directories - anywhere | ||
lnInclude | ||
|
||
# Build directories - anywhere | ||
linux*Clang*/ | ||
linux*Gcc*/ | ||
linux*Icc*/ | ||
solaris*Gcc*/ | ||
SunOS*Gcc*/ | ||
platforms/ | ||
|
||
# Reinstate wmake/rules that might look like build directories | ||
!wmake/rules/*/ | ||
|
||
# doxygen generated documentation | ||
doc/Doxygen/html | ||
doc/Doxygen/latex | ||
doc/Doxygen/man | ||
doc/Doxygen/DTAGS | ||
|
||
# Generated files in the main directory (e.g. ReleaseNotes-?.?.html) | ||
# and in the doc directory | ||
/*.html | ||
/doc/*.html | ||
|
||
# Untracked configuration files | ||
/etc/prefs.csh | ||
/etc/prefs.sh | ||
/etc/config.csh/prefs.csh | ||
/etc/config.sh/prefs.sh | ||
|
||
# Source packages - anywhere | ||
*.tar.bz2 | ||
*.tar.gz | ||
*.tar | ||
*.tgz | ||
*.gtgz | ||
|
||
# Ignore the persistent .build tag in the main directory | ||
/.build | ||
|
||
# Ignore .timeStamp in the main directory | ||
/.timeStamp | ||
|
||
# Ignore .tags in the main directory | ||
/.tags | ||
|
||
# Ignore project files in the main directory | ||
/.cproject | ||
/.project | ||
/.dir-locals.el | ||
/.ycm* | ||
|
||
# Ignore the test directory | ||
/tutorialsTest | ||
|
||
# Ignore log files | ||
log.* |