Skip to content

Commit 46b5689

Browse files
authored
Merge pull request #10572 from Maarrk/pr-gitignore-venv
Add more Python-related files to gitignore
2 parents 36359b2 + 965685e commit 46b5689

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

.gitignore

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,29 @@
33
.env
44

55
_build/
6-
env/
7-
__pycache__
8-
*.pyc
96
*~
107
.directory
118
.vs/
129
.vscode/
1310
*.mo
1411

12+
# Byte-compiled / optimized / DLL files
13+
__pycache__/
14+
*.py[cod]
15+
*$py.class
16+
17+
# Common environment files
18+
.env
19+
.venv
20+
env/
21+
venv/
22+
ENV/
23+
env.bak/
24+
venv.bak/
25+
26+
# User created Python virtual environment as described in the docs
27+
godot-docs-venv/
28+
1529
# Vim temp files
1630
*.swo
1731
*.swp
@@ -45,8 +59,5 @@ logo.h
4559
tmp-unused-images
4660
tmp-unused-images-history
4761

48-
# User created Python virtual environement as described in the docs
49-
godot-docs-venv/
50-
5162
# Jetbrains IDE files
5263
/.idea/

0 commit comments

Comments
 (0)