LoginSignup
97
92

More than 5 years have passed since last update.

Javaのプロジェクトで使う.gitignore

Posted at

毎回書くのめんどくさいんでまとめます。
ベースはGithubのgitignoreから。


# Java
*.class
*.jar
*.war
*.ear

# Eclipse
.project
.classpath
.settings

# Idea
.idea
*.iml
*.iws
*.ipr

# OS
Thumbs.db
.DS_Store

# Gradle
.gradle
!gradle-wrapper.jar

# Maven
target

# Build
out
build
bin

# Other
*.log
*.swp
*.bak

jarファイルは基本入れないんですけど、例外的に追加したいものは除外します。

!gradle-wrapper.jar
97
92
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
97
92