2011-10-26 20:25:40 +04:00
|
|
|
# .gitignore - List of filenames git should ignore
|
|
|
|
|
|
|
|
# Filenames that should be ignored wherever they appear
|
|
|
|
*~
|
|
|
|
*.pyc
|
|
|
|
*.pyo
|
|
|
|
TAGS
|
|
|
|
tags
|
|
|
|
ID
|
|
|
|
.DS_Store*
|
|
|
|
|
|
|
|
# Vim swap files.
|
|
|
|
.*.sw[a-z]
|
|
|
|
|
2014-09-10 01:40:00 +04:00
|
|
|
# Emacs directory variable files.
|
|
|
|
**/.dir-locals.el
|
|
|
|
|
2011-10-26 20:25:40 +04:00
|
|
|
# User files that may appear at the root
|
2011-11-15 15:57:26 +04:00
|
|
|
/.mozconfig*
|
|
|
|
/mozconfig
|
|
|
|
/configure
|
|
|
|
/config.cache
|
|
|
|
/config.log
|
2012-05-18 21:55:58 +04:00
|
|
|
/.clang_complete
|
2012-09-26 20:43:54 +04:00
|
|
|
/mach.ini
|
2011-10-26 20:25:40 +04:00
|
|
|
|
|
|
|
# Empty marker file that's generated when we check out NSS
|
|
|
|
security/manager/.nss.checkout
|
|
|
|
|
|
|
|
# Build directories
|
2012-01-27 00:53:56 +04:00
|
|
|
/obj*/
|
2011-10-26 20:25:40 +04:00
|
|
|
|
|
|
|
# Build directories for js shell
|
|
|
|
*/_DBG.OBJ/
|
|
|
|
*/_OPT.OBJ/
|
|
|
|
|
|
|
|
# SpiderMonkey configury
|
|
|
|
js/src/configure
|
|
|
|
js/src/autom4te.cache
|
|
|
|
# SpiderMonkey test result logs
|
|
|
|
js/src/tests/results-*.html
|
|
|
|
js/src/tests/results-*.txt
|
|
|
|
|
|
|
|
# Java HTML5 parser classes
|
|
|
|
parser/html/java/htmlparser/
|
|
|
|
parser/html/java/javaparser/
|
2012-01-17 01:31:44 +04:00
|
|
|
|
|
|
|
# Ignore the files and directory that Eclipse IDE creates
|
2012-02-14 02:36:16 +04:00
|
|
|
.project
|
|
|
|
.cproject
|
|
|
|
.settings/
|
2012-09-19 22:20:19 +04:00
|
|
|
|
|
|
|
# Python virtualenv artifacts.
|
2012-09-22 04:04:05 +04:00
|
|
|
python/psutil/*.so
|
|
|
|
python/psutil/*.pyd
|
2012-09-19 22:20:19 +04:00
|
|
|
python/psutil/build/
|
2013-04-30 11:22:25 +04:00
|
|
|
|
|
|
|
# Ignore chrome.manifest files from the devtools loader
|
|
|
|
browser/devtools/chrome.manifest
|
|
|
|
toolkit/devtools/chrome.manifest
|
2014-05-08 04:32:00 +04:00
|
|
|
|
|
|
|
# Tag files generated by GNU Global
|
|
|
|
GTAGS
|
|
|
|
GRTAGS
|
|
|
|
GSYMS
|
|
|
|
GPATH
|
2014-09-04 15:52:43 +04:00
|
|
|
|
|
|
|
# Git clone directory for updating web-platform-tests
|
|
|
|
testing/web-platform/sync/
|