diff options
| author | Christoph Blecker <admin@toph.ca> | 2017-11-30 11:34:52 -0800 |
|---|---|---|
| committer | Christoph Blecker <admin@toph.ca> | 2017-11-30 11:34:52 -0800 |
| commit | 60b3c6d7f2cab9dcff5861e872ee42b82cd0426a (patch) | |
| tree | fd6c020864cc3a4b8db36b4f7eac630849d18afc | |
| parent | ad244d0175e1c89cf12ef6a07dfce0d8e6be73e3 (diff) | |
Add basic gitignore
| -rw-r--r-- | .gitignore | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..5e438b15 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +# OSX leaves these everywhere on SMB shares +._* + +# OSX trash +.DS_Store + +# Eclipse files +.classpath +.project +.settings/** + +# Files generated by JetBrains IDEs, e.g. IntelliJ IDEA +.idea/ +*.iml + +# Vscode files +.vscode + +# Emacs save files +*~ +\#*\# +.\#* + +# Vim-related files +[._]*.s[a-w][a-z] +[._]s[a-w][a-z] +*.un~ +Session.vim +.netrwhist + +# JUnit test output from ginkgo e2e tests +/junit*.xml + +# Mercurial files +**/.hg +**/.hg* + +# direnv .envrc files +.envrc |
