-
-
Save Frazko/18c47a040c6e20ca2c9f to your computer and use it in GitHub Desktop.
Some common .gitignore configurations
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
| # Compiled source # | |
| # Created by http://www.gitignore.io | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| ### Sass ### | |
| .sass-cache | |
| *.css.map | |
| # Sublime Text 2 specific files # | |
| ################################# | |
| *.sublime-project | |
| *.sublime-workspace | |
| # Packages # | |
| ############ | |
| # it's better to unpack these files and commit the raw source | |
| # git has its own built in compression methods | |
| *.7z | |
| *.dmg | |
| *.gz | |
| *.iso | |
| *.jar | |
| *.rar | |
| *.tar | |
| *.zip | |
| # Logs and databases # | |
| ###################### | |
| *.log | |
| *.sql | |
| *.sqlite | |
| # OS generated files # | |
| ###################### | |
| .DS_Store | |
| .DS_Store? | |
| ._* | |
| .Spotlight-V100 | |
| .Trashes | |
| ehthumbs.db | |
| Thumbs.db | |
| # Compiled binary addons | |
| build | |
| build/Release | |
| cache | |
| test | |
| npm-debug.log | |
| .vagrant | |
| dist/ | |
| # Dependency directory | |
| ### Bower ### | |
| bower_components | |
| .bower-cache | |
| .bower-registry | |
| .bower-tmp | |
| ### grunt ### | |
| # Grunt usually compiles files inside this directory | |
| dist/ | |
| # Grunt usually preprocesses files such as coffeescript, compass... inside the .tmp directory | |
| .tmp/ | |
| # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | |
| .grunt | |
| # node-waf configuration | |
| .lock-wscript | |
| # Compiled binary addons (http://nodejs.org/api/addons.html) | |
| build/Release | |
| # Dependency directory | |
| # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | |
| node_modules | |
| ### SublimeText ### | |
| # 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 | |
| ### WebStorm ### | |
| # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm | |
| *.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 | |
| # 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment