Last active
March 1, 2018 22:39
-
-
Save jaredhocutt/a0022d2afcd598583110 to your computer and use it in GitHub Desktop.
.gitignore
This file contains hidden or 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
| ############################################################################### | |
| # Project | |
| ############################################################################### | |
| ############################################################################### | |
| # Archives | |
| # https://github.com/github/gitignore/blob/master/Global/Archives.gitignore | |
| ############################################################################### | |
| # It's better to unpack these files and commit the raw source because | |
| # git has its own built in compression methods. | |
| *.7z | |
| *.jar | |
| *.rar | |
| *.zip | |
| *.gz | |
| *.bzip | |
| *.bz2 | |
| *.xz | |
| *.lzma | |
| *.cab | |
| #packing-only formats | |
| *.iso | |
| *.tar | |
| #package management formats | |
| *.dmg | |
| *.xpi | |
| *.gem | |
| *.egg | |
| *.deb | |
| *.rpm | |
| *.msi | |
| *.msm | |
| *.msp | |
| ############################################################################### | |
| # Python | |
| # https://github.com/github/gitignore/blob/master/Python.gitignore | |
| ############################################################################### | |
| # Byte-compiled / optimized / DLL files | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # C extensions | |
| *.so | |
| # Distribution / packaging | |
| .Python | |
| env/ | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| # PyInstaller | |
| # Usually these files are written by a python script from a template | |
| # before PyInstaller builds the exe, so as to inject date/other infos into it. | |
| *.manifest | |
| *.spec | |
| # Installer logs | |
| pip-log.txt | |
| pip-delete-this-directory.txt | |
| # Unit test / coverage reports | |
| htmlcov/ | |
| .tox/ | |
| .coverage | |
| .coverage.* | |
| .cache | |
| nosetests.xml | |
| coverage.xml | |
| *,cover | |
| .hypothesis/ | |
| # Translations | |
| *.mo | |
| *.pot | |
| # Django stuff: | |
| *.log | |
| # Sphinx documentation | |
| docs/_build/ | |
| # PyBuilder | |
| target/ | |
| #Ipython Notebook | |
| .ipynb_checkpoints | |
| ############################################################################### | |
| # VirtualEnv | |
| # https://github.com/github/gitignore/blob/master/Global/VirtualEnv.gitignore | |
| ############################################################################### | |
| # Virtualenv | |
| # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ | |
| .Python | |
| [Bb]in | |
| [Ii]nclude | |
| [Ll]ib | |
| [Ll]ib64 | |
| [Ll]ocal | |
| [Ss]cripts | |
| pyvenv.cfg | |
| pip-selfcheck.json | |
| ############################################################################### | |
| # IPython Notebook | |
| # https://github.com/github/gitignore/blob/master/Global/IPythonNotebook.gitignore | |
| ############################################################################### | |
| # Temporary data | |
| .ipynb_checkpoints/ | |
| ############################################################################### | |
| # Go | |
| # https://github.com/github/gitignore/blob/master/Go.gitignore | |
| ############################################################################### | |
| # Compiled Object files, Static and Dynamic libs (Shared Objects) | |
| *.o | |
| *.a | |
| *.so | |
| # Folders | |
| _obj | |
| _test | |
| # Architecture specific extensions/prefixes | |
| *.[568vq] | |
| [568vq].out | |
| *.cgo1.go | |
| *.cgo2.c | |
| _cgo_defun.c | |
| _cgo_gotypes.go | |
| _cgo_export.* | |
| _testmain.go | |
| *.exe | |
| *.test | |
| *.prof | |
| ############################################################################### | |
| # Vagrant | |
| # https://github.com/github/gitignore/blob/master/Global/Vagrant.gitignore | |
| ############################################################################### | |
| .vagrant/ | |
| ############################################################################### | |
| # Eclipse | |
| # https://github.com/github/gitignore/blob/master/Global/Eclipse.gitignore | |
| ############################################################################### | |
| .metadata | |
| bin/ | |
| tmp/ | |
| *.tmp | |
| *.bak | |
| *.swp | |
| *~.nib | |
| local.properties | |
| .settings/ | |
| .loadpath | |
| # Eclipse Core | |
| .project | |
| # External tool builders | |
| .externalToolBuilders/ | |
| # Locally stored "Eclipse launch configurations" | |
| *.launch | |
| # PyDev specific (Python IDE for Eclipse) | |
| *.pydevproject | |
| # CDT-specific (C/C++ Development Tooling) | |
| .cproject | |
| # JDT-specific (Eclipse Java Development Tools) | |
| .classpath | |
| # Java annotation processor (APT) | |
| .factorypath | |
| # PDT-specific (PHP Development Tools) | |
| .buildpath | |
| # sbteclipse plugin | |
| .target | |
| # TeXlipse plugin | |
| .texlipse | |
| # STS (Spring Tool Suite) | |
| .springBeans | |
| ############################################################################### | |
| # Emacs | |
| # https://github.com/github/gitignore/blob/master/Global/Emacs.gitignore | |
| ############################################################################### | |
| # -*- mode: gitignore; -*- | |
| *~ | |
| \#*\# | |
| /.emacs.desktop | |
| /.emacs.desktop.lock | |
| *.elc | |
| auto-save-list | |
| tramp | |
| .\#* | |
| # Org-mode | |
| .org-id-locations | |
| *_archive | |
| # flymake-mode | |
| *_flymake.* | |
| # eshell files | |
| /eshell/history | |
| /eshell/lastdir | |
| # elpa packages | |
| /elpa/ | |
| # reftex files | |
| *.rel | |
| # AUCTeX auto folder | |
| /auto/ | |
| # cask packages | |
| .cask/ | |
| ############################################################################### | |
| # JetBrains | |
| # https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore | |
| ############################################################################### | |
| # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm | |
| *.iml | |
| ## Directory-based project format: | |
| .idea/ | |
| # if you remove the above rule, at least ignore the following: | |
| # User-specific stuff: | |
| # .idea/workspace.xml | |
| # .idea/tasks.xml | |
| # .idea/dictionaries | |
| # .idea/shelf | |
| # Sensitive or high-churn files: | |
| # .idea/dataSources.ids | |
| # .idea/dataSources.xml | |
| # .idea/sqlDataSources.xml | |
| # .idea/dynamic.xml | |
| # .idea/uiDesigner.xml | |
| # Gradle: | |
| # .idea/gradle.xml | |
| # .idea/libraries | |
| # Mongo Explorer plugin: | |
| # .idea/mongoSettings.xml | |
| ## File-based project format: | |
| *.ipr | |
| *.iws | |
| ## Plugin-specific files: | |
| # IntelliJ | |
| /out/ | |
| # mpeltonen/sbt-idea plugin | |
| .idea_modules/ | |
| # JIRA plugin | |
| atlassian-ide-plugin.xml | |
| # Crashlytics plugin (for Android Studio and IntelliJ) | |
| com_crashlytics_export_strings.xml | |
| crashlytics.properties | |
| crashlytics-build.properties | |
| fabric.properties | |
| ############################################################################### | |
| # Sublime Text | |
| # https://github.com/github/gitignore/blob/master/Global/SublimeText.gitignore | |
| ############################################################################### | |
| # cache files for sublime text | |
| *.tmlanguage.cache | |
| *.tmPreferences.cache | |
| *.stTheme.cache | |
| # workspace files are user-specific | |
| *.sublime-workspace | |
| # project files should be checked into the repository, unless a significant | |
| # proportion of contributors will probably not be using SublimeText | |
| # *.sublime-project | |
| # sftp configuration file | |
| sftp-config.json | |
| ############################################################################### | |
| # Vim | |
| # https://github.com/github/gitignore/blob/master/Global/Vim.gitignore | |
| ############################################################################### | |
| [._]*.s[a-w][a-z] | |
| [._]s[a-w][a-z] | |
| *.un~ | |
| Session.vim | |
| .netrwhist | |
| *~ | |
| ############################################################################### | |
| # Linux | |
| # https://github.com/github/gitignore/blob/master/Global/Linux.gitignore | |
| ############################################################################### | |
| *~ | |
| # temporary files which can be created if a process still has a handle open of a deleted file | |
| .fuse_hidden* | |
| # KDE directory preferences | |
| .directory | |
| # Linux trash folder which might appear on any partition or disk | |
| .Trash-* | |
| ############################################################################### | |
| # OS X | |
| # https://github.com/github/gitignore/blob/master/Global/OSX.gitignore | |
| ############################################################################### | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| # Icon must end with two \r | |
| Icon | |
| # Thumbnails | |
| ._* | |
| # Files that might appear in the root of a volume | |
| .DocumentRevisions-V100 | |
| .fseventsd | |
| .Spotlight-V100 | |
| .TemporaryItems | |
| .Trashes | |
| .VolumeIcon.icns | |
| # Directories potentially created on remote AFP share | |
| .AppleDB | |
| .AppleDesktop | |
| Network Trash Folder | |
| Temporary Items | |
| .apdisk | |
| ############################################################################### | |
| # Windows | |
| # https://github.com/github/gitignore/blob/master/Global/Windows.gitignore | |
| ############################################################################### | |
| # Windows image file caches | |
| Thumbs.db | |
| ehthumbs.db | |
| # Folder config file | |
| Desktop.ini | |
| # Recycle Bin used on file shares | |
| $RECYCLE.BIN/ | |
| # Windows Installer files | |
| *.cab | |
| *.msi | |
| *.msm | |
| *.msp | |
| # Windows shortcuts | |
| *.lnk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment