diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..d3557889 --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# Ignore Mac temp files +.DS_Store + +# Ignore Vim temporary files +.*.sw? + +# Ignore changes to the JJB Configuration File +jenkins.ini + +# We don't want .netrc files since they're credential files +.netrc + +# Maven +target/ + +# Vagrant +.vagrant + +# IntelliJ +.idea/ +*.iml + +# Eclipse +.project +/.pydevproject + +# Python +.tox/ +__pycache__/ +*.pyc + +# node +node/ +node_modules/ +foo/ +holmes/ |