-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
78 lines (70 loc) · 786 Bytes
/
.gitignore
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
todo.txt
explorer.py
# .gitignore for ROS2
# Ignore build and install directories
build/
install/
log/
# Ignore files generated by colcon
colcon.meta
colcon.log
# Ignore all Python related files
__pycache__/
*.pyc
*.pyo
*.pyd
*.pyc.og
*.pyo.og
*.pyd.og
*.egg-info/
dist/
*.egg
*.dylib
*.swp
# Ignore necessary C++ output files
*.o
*.a
*.dylib
*.obj
*.exe
*.pdb
*.dll
*.lib
*.exp
*.ilk
*.ipch
*.iobj
*.ide
*.idb
*.db
*.db.swo
*.db.swp
*.db-journal
*.db-wal
# Ignore IDE and editor files
.vscode/
.vs/
.idea/
*.code-workspace
*.suo
*.sln
*.sln.docstates
*.user
*.userosscache
*.VC.db
*.VC.opendb
*.VC.opendb-journal
*.VC.db-wal
*.VC.db-shm
*.VC.VC.opendb
*.VC.VC.db
# Ignore other miscellaneous files
*.log
*.bak
*.swp
*.swo
.DS_Store
.tags
.tags.sortedbyfile
.ctags
.ccls-cache/