Question
What is the community's thoughts on adding a basic .gitignore file during uv init? My rationale is given uv init creates a .venv folder, which should never be pushed to a git, it would be helpful to add an ignore file to include the .venv.
Simple ignore file such as
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# Environments
.env
.venv
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
# IDE specific files
.idea/
.vscode/
*.swp
*.swo
Platform
No response
Version
0.5.2
Question
What is the community's thoughts on adding a basic
.gitignorefile duringuv init? My rationale is givenuv initcreates a.venvfolder, which should never be pushed to a git, it would be helpful to add an ignore file to include the.venv.Simple ignore file such as
Platform
No response
Version
0.5.2