Last active
April 1, 2023 01:57
-
-
Save Choonster/6447037d24d0ed5898b8 to your computer and use it in GitHub Desktop.
A .gitignore file suitable for developing Minecraft Forge mods using ForgeGradle.
This file contains hidden or 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
## Based on GitHub's Eclipse .gitignore | |
run/ | |
.gradle/ | |
build/ | |
gradle-app.setting | |
## IntelliJ IDEA | |
.idea/ | |
*.iml | |
*.iws | |
*.ipr | |
## Eclipse | |
eclipse/ | |
*.pydevproject | |
.project | |
.metadata | |
bin/ | |
tmp/ | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
local.properties | |
.classpath | |
.settings/ | |
.loadpath | |
# External tool builders | |
.externalToolBuilders/ | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# CDT-specific | |
.cproject | |
# PDT-specific | |
.buildpath |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Khazbs This is a very old Gist, I use a different format for my .gitignore files now.
That said, tracking the Gradle wrapper JAR is intentional. It's designed to be committed to source control, the wrapper shell/batch scripts don't work without it.