Last active
August 29, 2015 14:09
-
-
Save MasterOdin/654b3e3f7ff346f1bc8d to your computer and use it in GitHub Desktop.
.gitignore template for all my projects
This file contains 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
#================== | |
# OS X # | |
#================== | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must end with two \r | |
Icon | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
# Directories potentially created on remote AFP share | |
.AppleDB | |
.AppleDesktop | |
Network Trash Folder | |
Temporary Items | |
.apdisk | |
#================== | |
# WINDOWS # | |
#================== | |
# 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 | |
#================== | |
# JETBRAINS # | |
#================== | |
# Directory-based project format: | |
.idea/ | |
# 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 | |
#================== | |
# SUBLIME TEXT # | |
#================== | |
# 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 | |
#================== | |
# NOTEPAD++ # | |
#================== | |
# Notepad++ backups # | |
*.bak | |
#================== | |
# NINJA # | |
#================== | |
.ninja_deps | |
.ninja_log | |
#================== | |
# Miscellaneous # | |
#================== | |
*.zip | |
*.swp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment