Skip to content

Commit c1b1423

Browse files
committed
Add .gitignore
Copied from ros-navigation/navigation2
1 parent d4b634a commit c1b1423

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

.gitignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Compiled Object files
2+
*.slo
3+
*.lo
4+
*.o
5+
*.obj
6+
7+
# Precompiled Headers
8+
*.gch
9+
*.pch
10+
11+
# Compiled Dynamic libraries
12+
*.so
13+
*.dylib
14+
*.dll
15+
16+
# Fortran module files
17+
*.mod
18+
*.smod
19+
20+
# Compiled Static libraries
21+
*.lai
22+
*.la
23+
*.a
24+
*.lib
25+
26+
# Executables
27+
*.exe
28+
*.out
29+
*.app
30+
31+
# Colcon output
32+
build
33+
log
34+
install
35+
36+
# Visual Studio Code files
37+
.vscode
38+
39+
# Eclipse project files
40+
.cproject
41+
.project
42+
.pydevproject
43+
44+
# Python artifacts
45+
__pycache__/
46+
*.py[cod]
47+
.ipynb_checkpoints
48+
49+
sphinx_doc/_build
50+
51+
# CLion artifacts
52+
.idea
53+
cmake-build-debug/
54+
55+
# doxygen docs
56+
doc/html/

0 commit comments

Comments
 (0)