Skip to content

Commit 13a9cf2

Browse files
committed
Add Python virtual environment directories to .gitignore
- Add .venv/, venv/, env/, ENV/ to prevent committing virtual environments - Add .uv/ for uv cache directory - Ensures clean repository when using uv sync or python venv
1 parent d7e2bff commit 13a9cf2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,13 @@ __pycache__/
142142
pip-log.txt
143143
pip-delete-this-directory.txt
144144

145+
# Python virtual environments
146+
.venv/
147+
venv/
148+
env/
149+
ENV/
150+
.uv/
151+
145152
# Coverage reports
146153
tarpaulin-report.html
147154
cobertura.xml

0 commit comments

Comments
 (0)