Last active
May 2, 2024 14:55
-
-
Save islomar/6704b616463deef606e2 to your computer and use it in GitHub Desktop.
Basic gitignore for Java and Mac:
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
# git config --global core.excludesfile ~/.gitignore_global | |
# Some common .gitignore configurations: https://gist.github.com/octocat/9257657 | |
# Copy the next content on the .gitignore_global file: | |
.DS_Store | |
*.class | |
bin/ | |
.settings/ | |
# Eclipse files | |
.project | |
.classpath | |
.metadata/ | |
# IntelliJ | |
.idea/ | |
*.iml | |
*.ipr | |
*.iws | |
atlassian-ide-plugin.xml | |
# Maven files | |
target/ | |
# Package Files # | |
*.jar | |
*.war | |
*.ear |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment