Skip to content

Commit b194ca7

Browse files
committed
Update .gitignore to ignore all compiled Python files and __pycache__ directories
This commit modifies the .gitignore file to include patterns for ignoring all compiled Python files (*.py[cod], *$py.class, *.so) and all __pycache__ directories, ensuring a cleaner project structure by preventing unnecessary artifacts from being tracked.
1 parent 5c9e451 commit b194ca7

1 file changed

Lines changed: 5 additions & 8 deletions

File tree

.gitignore

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
.env
22

3-
__pycache__/
4-
api/__pycache__/
5-
app/__pycache__/
6-
core/__pycache__/
7-
engine/__pycache__/
8-
tests/__pycache__/
9-
utils/__pycache__/
3+
**/__pycache__/
4+
*.py[cod]
5+
*$py.class
6+
*.so
107

11-
cursor/
8+
cursor/

0 commit comments

Comments
 (0)