summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2019-12-16 13:29:42 -0500
committerMatt A. Tobin <email@mattatobin.com>2019-12-16 13:29:42 -0500
commitdb902e77e2442e5fdc4a54d4de6cdf2b65c80320 (patch)
tree763ef2f51d4ffd8e3a68624a3d921504572ac58a /.gitignore
parentea75bb81e937c895ceb91e9e48d31d0cee57c9a9 (diff)
downloadbasilisk-db902e77e2442e5fdc4a54d4de6cdf2b65c80320.tar.gz
Add git stuff
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore66
1 files changed, 66 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..840c622
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,66 @@
+# .gitignore - List of filenames git should ignore
+
+# Filenames that should be ignored wherever they appear
+*~
+*.rej
+*.orig
+*.pyc
+*.pyo
+TAGS
+tags
+ID
+.DS_Store*
+
+# Vim swap files.
+.*.sw[a-z]
+
+# User files that may appear at the root
+/.mozconfig*
+/mozconfig
+/configure
+/config.cache
+/config.log
+/.clang_complete
+/mach.ini
+
+# Empty marker file that's generated when we check out NSS
+security/manager/.nss.checkout
+
+# Build directories
+/obj*/
+/build-*/
+
+# 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/
+
+# Ignore the files and directory that Eclipse IDE creates
+.project
+.cproject
+.settings/
+
+# Python virtualenv artifacts.
+python/psutil/*.so
+python/psutil/*.pyd
+python/psutil/build/
+
+# Ignore chrome.manifest files from the devtools loader
+browser/devtools/chrome.manifest
+toolkit/devtools/chrome.manifest
+
+# Ignore misc files that need not be in the repo
+other-licenses/7zstub/firefox/7zSD - Copy.sfx.exe
+
+# Ignore official beta branding
+browser/branding/officialbeta/ \ No newline at end of file