Add .gitignore (C#/Python) and enable Git LFS for zip, dll, exe, .weights
This commit is contained in:
commit
8dc8759b81
2 changed files with 69 additions and 0 deletions
5
.gitattributes
vendored
Normal file
5
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Git LFS: track large/binary files
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.dll filter=lfs diff=lfs merge=lfs -text
|
||||
*.exe filter=lfs diff=lfs merge=lfs -text
|
||||
*.weights filter=lfs diff=lfs merge=lfs -text
|
||||
64
.gitignore
vendored
Normal file
64
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
# .gitignore — C# (Visual Studio) + Python
|
||||
# ------------------------------------------------------------------
|
||||
|
||||
# ----- Visual Studio / C# -----
|
||||
.vs/
|
||||
*.user
|
||||
*.userosscache
|
||||
*.suo
|
||||
*.sln.docstates
|
||||
*.suo
|
||||
*.cache
|
||||
# Build folders
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
# Rider/IDE
|
||||
.idea/
|
||||
# NuGet packages
|
||||
*.nupkg
|
||||
# Test results
|
||||
TestResults/
|
||||
|
||||
# ----- Python -----
|
||||
# Byte-compiled / optimized
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# Distribution / packaging
|
||||
build/
|
||||
dist/
|
||||
*.egg-info/
|
||||
.eggs/
|
||||
parts/
|
||||
sdist/
|
||||
|
||||
# Virtual environments — ignore any folder starting with "venv"
|
||||
**/venv*/
|
||||
venv*/
|
||||
.venv/
|
||||
env/
|
||||
ENV/
|
||||
|
||||
# Jupyter
|
||||
.ipynb_checkpoints/
|
||||
|
||||
# Unit test / coverage
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
.coverage.*
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
|
||||
# VS Code settings
|
||||
.vscode/
|
||||
|
||||
# Misc
|
||||
*.log
|
||||
|
||||
# NOTE: We DO NOT ignore binary types (zip, dll, exe, .weights) here because
|
||||
# they are tracked via Git LFS (configured in .gitattributes / git lfs track).
|
||||
Loading…
Add table
Add a link
Reference in a new issue