Compare commits

...

6 Commits

Author SHA1 Message Date
Jiten
977b161599
Merge 48c777b699 into 3780fff86c 2026-05-19 19:00:38 -05:00
Devin Dooley
3780fff86c
Merge pull request #4801 from NoahGreer/update-godot-gitignore-template
Update Godot.gitignore
2026-05-18 09:18:31 -07:00
Noah Greer
bf4440e850 Add rule for Godot temp extension library copies on Windows
As of Godot 4.2 the editor has a Windows-specific workaround for loading extension libraries.
Before the extension library is loaded the Godot editor creates a temp copy of the extension library `.dll` file with a `~` prefix (e.g. `example.dll` => `~example.dll`).
When the extension library is unloaded the Godot editor deletes the temp copy.
These copied `~*.dll` files are temporary and should be ignored.

References:

Godot 4.2 changelog
https://godotengine.org/article/godot-4-2-arrives-in-style/#gdextension

Godot PR #80188 GDExtension: Copy DLL to a temp file before opening
https://github.com/godotengine/godot/pull/80188
2026-03-23 10:12:22 -07:00
Jitendra Singh Rajpurohit
48c777b699
Update Spring.gitignore to more cleaned version 2026-03-17 18:14:29 +05:30
Jitendra Singh Rajpurohit
57db0f3a6b
Update Spring.gitignore to more cleaned version 2026-03-17 18:01:25 +05:30
Jitendra Singh Rajpurohit
52833a1343
Add .gitignore for Spring project files 2026-02-26 23:42:12 +05:30
2 changed files with 79 additions and 0 deletions

View File

@ -1,3 +1,6 @@
# Godot 4.2+ specific ignores
~*.dll
# Godot 4+ specific ignores
.godot/
.nomedia

76
Spring.gitignore Normal file
View File

@ -0,0 +1,76 @@
# Compiled class file
*.class
# Logs
*.log
logs/
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Build
target/
build/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
# Maven
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
!.mvn/wrapper/maven-wrapper.jar
# Gradle
.gradle/
!gradle/wrapper/gradle-wrapper.jar
# IDEs
.idea/
*.iml
out/
.vscode/
# Eclipse
.classpath
.project
.settings/
# NetBeans
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
# OS
.DS_Store
Thumbs.db
desktop.ini
# Temp
*.tmp
*.temp
# Env / secrets
.env
.env.local
.env.*.local