Last active
February 10, 2019 14:06
-
-
Save jahentao/45064927f97e834ee9608e01cc6ef170 to your computer and use it in GitHub Desktop.
jetbrains IDE 项目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
# copy from https://github.com/github/gitignore/blob/master/Global/Eclipse.gitignore | |
.metadata | |
bin/ | |
tmp/ | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
local.properties | |
.settings/ | |
.loadpath | |
.recommenders | |
# Maven project | |
target/ | |
# External tool builders | |
.externalToolBuilders/ | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# PyDev specific (Python IDE for Eclipse) | |
*.pydevproject | |
# CDT-specific (C/C++ Development Tooling) | |
.cproject | |
# CDT- autotools | |
.autotools | |
# Java annotation processor (APT) | |
.factorypath | |
# PDT-specific (PHP Development Tools) | |
.buildpath | |
# sbteclipse plugin | |
.target | |
# Tern plugin | |
.tern-project | |
# TeXlipse plugin | |
.texlipse | |
# STS (Spring Tool Suite) | |
.springBeans | |
# Code Recommenders | |
.recommenders/ | |
# Annotation Processing | |
.apt_generated/ | |
# Scala IDE specific (Scala & Java development for Eclipse) | |
.cache-main | |
.scala_dependencies | |
.worksheet |
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
# Created by https://www.gitignore.io/api/jetbrains | |
# 最好的方法是用git status 一扫描,明确哪些要排除的文件,将其加入.gitignore | |
### JetBrains ### | |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm | |
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | |
# User-specific stuff: | |
.gitignore | |
.idea/ | |
logs/ | |
## File-based project format: | |
*.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 | |
### JetBrains Patch ### | |
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 | |
*.iml | |
modules.xml | |
.idea/misc.xml | |
*.ipr | |
# Sonarlint plugin | |
.idea/sonarlint | |
# End of https://www.gitignore.io/api/jetbrains |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment