-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitignore
71 lines (58 loc) · 929 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
# Ignore all files in root dir with a prefix
/*.*
# Files which are NOT to ignore
!.gitignore
!.gitmodules
!*.md
!*.yml
!PandaControlServer.cpp
!CMakeLists.txt
!package.xml
# Ignore all files in proto dir
/proto/
# Ignore submodules and test dirs
/extern/
[Gg][Tt]est/
# Files in the proto dir which are NOT to ignore
!/proto/*.proto
!/proto/*.sila.xml
# Executables
*.exe
# Library files
*.so
*.a
*.dll
*.lib
# Generated files
*.class
*.jar
[Cc]onfig.h
[Cc]onfig.java
# Temporary and core files
~*
core
# NetBeans project directories and files
dist/
private/
nbproject/
# CMake generated directories and files
CMakeFiles/
Testing/
[Bb]uild/
[Rr]elease/
Makefile
*.cmake
*.make
# ROS and catkin generated directories
catkin_generated/
atomic_configure/
# Visual Studio project directories and files
.vs/
out/
# Doxygen generated documentation files
/doc/html/
/doc/latex/
/doc/docbook/
/doc/xml/
/doc/man/
/doc/rtf/