Skip to content

Instantly share code, notes, and snippets.

@Piyoshi
Last active April 20, 2017 06:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Piyoshi/524e03aa9340daaea5e6fb086c22de9c to your computer and use it in GitHub Desktop.
Save Piyoshi/524e03aa9340daaea5e6fb086c22de9c to your computer and use it in GitHub Desktop.
Java開発の際に使用する.gitignoreの例
# Gradle
# ------
.gradle
/build
/buildSrc/build
/subprojects/*/build
/subprojects/docs/src/samples/*/*/build
/subprojects/internal-android-performance-testing/build-android-libs
# Maven
# -----
/target/
!.mvn/wrapper/maven-wrapper.jar
# IDEA
# ----
.idea
.shelf
/*.iml
/*.ipr
/*.iws
/buildSrc/*.iml
/buildSrc/*.ipr
/buildSrc/*.iws
/buildSrc/out
/out
/subprojects/*/*.iml
/subprojects/*/out
# Eclipse
# -------
*.classpath
*.project
*.settings
/bin
/subprojects/*/bin
atlassian-ide-plugin.xml
# STS
.apt_generated
.factorypath
.springBeans
# NetBeans
# --------
.nb-gradle
.nb-gradle-properties
# Vim
# ---
*.sw[op]
# Emacs
# -----
*~
# Textmate
# --------
.textmate
# Sublime Text
# ------------
*.sublime-*
# jEnv
# ----
.java-version
# OS X
# ----
.DS_Store
# HPROF
# -----
*.hprof
# Work dirs
# ---------
/incoming-distributions
/intTestHomeDir
# Logs
# ----
/*.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment