General git stuff
This commit is contained in:
parent
4d7222e931
commit
b53ff03dfe
10
.gitattributes
vendored
10
.gitattributes
vendored
@ -16,10 +16,18 @@
|
|||||||
# Set the default behavior for all files.
|
# Set the default behavior for all files.
|
||||||
* text=auto eol=lf
|
* text=auto eol=lf
|
||||||
|
|
||||||
|
# Godot
|
||||||
|
# Godot
|
||||||
|
# Godot
|
||||||
|
*.bin filter=lfs diff=lfs merge=lfs -text lockable
|
||||||
|
*.res filter=lfs diff=lfs merge=lfs -text lockable
|
||||||
|
*.glb filter=lfs diff=lfs merge=lfs -text lockable
|
||||||
|
*.lmbake filter=lfs diff=lfs merge=lfs -text lockable
|
||||||
|
|
||||||
|
|
||||||
# Source code
|
# Source code
|
||||||
# Source code
|
# Source code
|
||||||
# Source code
|
# Source code
|
||||||
*.cs text eol=lf
|
|
||||||
*.rs text
|
*.rs text
|
||||||
*.bash text eol=lf
|
*.bash text eol=lf
|
||||||
*.bat text eol=crlf
|
*.bat text eol=crlf
|
||||||
|
|||||||
86
.gitignore
vendored
86
.gitignore
vendored
@ -1,27 +1,67 @@
|
|||||||
#Folders
|
|
||||||
Library/
|
|
||||||
Temp/
|
# Group Ignores
|
||||||
Builds/
|
ignored/
|
||||||
Libraries/
|
ignore/
|
||||||
Debug/
|
|
||||||
Release/
|
|
||||||
run/
|
# Personal ignores
|
||||||
bin/
|
# ignore the addons folder
|
||||||
obj/
|
addons/
|
||||||
|
exports/
|
||||||
|
log/
|
||||||
|
save/
|
||||||
|
samples/
|
||||||
|
|
||||||
|
# Godot 4+ specific ignores
|
||||||
|
.godot/
|
||||||
|
|
||||||
|
*.swp
|
||||||
|
*.*~
|
||||||
|
project.lock.json
|
||||||
|
.DS_Store
|
||||||
|
*.pyc
|
||||||
|
nupkg/
|
||||||
.vs/
|
.vs/
|
||||||
|
|
||||||
#Project/User Preference Files
|
# Visual Studio Code
|
||||||
*.pidb
|
# Created by https://www.gitignore.io/api/visualstudiocode
|
||||||
*.userprefs
|
# Edit at https://www.gitignore.io/?templates=visualstudiocode
|
||||||
*.user
|
|
||||||
|
### VisualStudioCode ###
|
||||||
|
.vscode/* # Maybe .vscode/**/* instead - see comments
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
|
||||||
|
### VisualStudioCode Patch ###
|
||||||
|
# Ignore all local history of files
|
||||||
|
**/.history
|
||||||
|
|
||||||
|
# End of https://www.gitignore.io/api/visualstudiocode
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# User-specific files
|
||||||
*.suo
|
*.suo
|
||||||
|
*.user
|
||||||
|
*.userosscache
|
||||||
|
*.sln.docstates
|
||||||
|
|
||||||
#OS Junk
|
# Build results
|
||||||
Thumbs.db
|
[Dd]ebug/
|
||||||
.DS_Store*
|
[Dd]ebugPublic/
|
||||||
ehthumbs.db
|
[Rr]elease/
|
||||||
Icon7
|
[Rr]eleases/
|
||||||
|
x64/
|
||||||
|
x86/
|
||||||
|
build/
|
||||||
#*.sln
|
bld/
|
||||||
|
[Bb]in/
|
||||||
|
[Oo]bj/
|
||||||
|
[Oo]ut/
|
||||||
|
msbuild.log
|
||||||
|
msbuild.err
|
||||||
|
msbuild.wrn
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user