-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
89 lines (74 loc) · 1.15 KB
/
.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
78
79
80
81
82
83
84
85
86
87
88
89
# Ignore build and devel directories in each ROS package
**/build/
**/devel/
**/bin/
**/lib/
**/msg_gen/
**/srv_gen/
**/include/
# Ignore logs and core dumps
*.log
core*
# Ignore compiled Python files
*.pyc
__pycache__/
# Ignore Catkin generated files
*.cmake
CMakeLists.txt.user
catkin_generated/
install_manifest.txt
# Ignore ROS workspace settings
*.rosinstall
install/
# Ignore editor-specific files
.vscode/
.idea/
*.swp
*~
# Ignore Catkin tools and workspace-related files
.catkin_tools/
.catkin_workspace
logs/
# Ignore compiled CMake files
cmake_install.cmake
CMakeCache.txt
CMakeFiles/
Makefile
build/
devel/
# Ignore pyenv
.pyenv/
# Additional ROS-specific rules
msg/*Action.msg
msg/*ActionFeedback.msg
msg/*ActionGoal.msg
msg/*ActionResult.msg
msg/*Feedback.msg
msg/*Goal.msg
msg/*Result.msg
msg/_*.py
build_isolated/
devel_isolated/
*.cfgc
/cfg/cpp/
/cfg/*.py
# Ignore generated docs
*.dox
*.wikidoc
# Eclipse and QtCreator related files
.project
.cproject
CMakeLists.txt.user
# Custom ROS service files
srv/_*.py
*.pcd
qtcreator-*
*.user
# ROS planning directory
/planning/cfg
/planning/docs
/planning/src
# Emacs
.#*
# Catkin custom files
CATKIN_IGNORE