Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dedunumax
Last active April 6, 2024 16:13
Show Gist options
  • Save dedunumax/54e82214715e35439227 to your computer and use it in GitHub Desktop.
Save dedunumax/54e82214715e35439227 to your computer and use it in GitHub Desktop.
A complete .gitignore file for Java.
##############################
## Java
##############################
.mtj.tmp/
*.class
*.jar
*.war
*.ear
*.nar
hs_err_pid*
replay_pid*
##############################
## Maven
##############################
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
pom.xml.bak
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar
##############################
## Gradle
##############################
bin/
build/
.gradle
.gradletasknamecache
gradle-app.setting
!gradle-wrapper.jar
##############################
## IntelliJ
##############################
out/
.idea/
.idea_modules/
*.iml
*.ipr
*.iws
##############################
## Eclipse
##############################
.settings/
bin/
tmp/
.metadata
.classpath
.project
*.tmp
*.bak
*.swp
*~.nib
local.properties
.loadpath
.factorypath
##############################
## NetBeans
##############################
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
##############################
## Visual Studio Code
##############################
.vscode/
.code-workspace
##############################
## OS X
##############################
.DS_Store
##############################
## Miscellaneous
##############################
*.log
@masadamsahid
Copy link

Its very helping me. Thanks a lot 👍

@BrandontheDev360
Copy link

Possibly add .env for environment variables?

@Crypter0
Copy link

Thank you, very nice.

@TonyGravagno
Copy link

Thank you for this list! Please add : ._.DS_Store

@ChanPyaeAung11
Copy link

this is amazing. thx u

@MorgooN
Copy link

MorgooN commented Jul 16, 2023

Awesome, thx

@MorgooN
Copy link

MorgooN commented Jul 17, 2023

Humble suggestion about adding .xml into INTELIDEA section. Thx again

@BenMcLean
Copy link

Humble suggestion about adding .xml into INTELIDEA section. Thx again

Leaving that out is intentional because .xml files often are supposed to be committed.

@Marat-Sadenov
Copy link

add please *.log

@dedunumax
Copy link
Author

I added log under a different section.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment