
From my research, it appars that runClient.launch, runData.launch, and runServer.launch can't be automatically ignored by .gitignore because they are already files on the main repo. Removing them from the main repo should make forks easier to maintain. I've been having to manually exclude those files from my commits, and have to regenerate them whenever I create a new branch based on the upstream repository.
38 lines
383 B
Plaintext
38 lines
383 B
Plaintext
# General use .gitignore for Minecraft modding.
|
|
|
|
# Directories
|
|
/.gradle/
|
|
/build/
|
|
/eclipse
|
|
/run/
|
|
/out/
|
|
/asm/
|
|
/bin/
|
|
/build/
|
|
/config/
|
|
crash-reports/
|
|
/.idea/
|
|
/.metadata/
|
|
/libs/
|
|
/saves/
|
|
/resourcepacks/
|
|
/logs/
|
|
/mods/
|
|
/screenshots/
|
|
/classes/
|
|
|
|
# File Extensions
|
|
*.psd
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
*.classpath
|
|
*.project
|
|
*.launch
|
|
|
|
# Specific files
|
|
Thumbs.db
|
|
usernamecache.json
|
|
options.txt
|
|
usercache.json
|