-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy path.gitignore
More file actions
52 lines (41 loc) · 789 Bytes
/
.gitignore
File metadata and controls
52 lines (41 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Ignore common unwanted files globally
**/.DS_Store
**/.env
**/__pycache__/
*.py[cod]
**/.conda/
**/node_modules/
#Ignore IDE files
.cursor/
.windsurf/
# ignore test files in root dir
/*.test.py
# Ignore all contents of the virtual environment directory
.venv/
# obsolete folders
/memory/
/knowledge/custom/
/instruments/
# Handle logs directory
logs/**
!logs/**/
# Handle tmp and usr directory
tmp/**
!tmp/**/
# hack to keep .gitkeep but ignore nested repos
# Ignore everything under usr
usr/**
# Ignore nested repos
/usr/**/.git
# Allow git to traverse directories
!usr/**/
# Re-ignore everything again
usr/**/*
# But allow .gitkeep files
!usr/**/.gitkeep
# Global rule to include .gitkeep files anywhere
!**/.gitkeep
# for browser-use
agent_history.gif
.agent/**
.claude/**