Last active
January 21, 2024 03:50
-
-
Save chhh/4961200 to your computer and use it in GitHub Desktop.
.gitignore file for IDEA, Eclipse, NetBeans
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
# | |
# Project specific excludes | |
# | |
tomcat | |
# | |
# Default excludes | |
# | |
# Binaries | |
*.7z | |
*.dmg | |
*.gz | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
*.war | |
*.ear | |
*.sar | |
*.class | |
# Maven | |
target/ | |
# IntelliJ project files | |
*.iml | |
*.iws | |
*.ipr | |
.idea/ | |
# eclipse project file | |
.settings/ | |
.classpath | |
.project | |
# NetBeans specific | |
nbproject/private/ | |
build/ | |
nbbuild/ | |
dist/ | |
nbdist/ | |
nbactions.xml | |
nb-configuration.xml | |
# OS | |
.DS_Store | |
# Misc | |
*.swp | |
release.properties | |
pom.xml.releaseBackup | |
pom.xml.tag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment