-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
135 lines (121 loc) · 3.08 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#first ignore everything
/*
# "un-ignore in the root folder
# the source code
!*.cc
# the gitignore
!.gitignore
# the cmakelist
!CMakeLists.txt
# "un-ignore the header folder =========Header========
!/myheaders
#Now ignore all the content of the folder myheaders
/myheaders/*
#Un-ignore the source code
!/myheaders/*.h
# unignore the Vis folder =========Vis========
!/Vis
# now ignore all the content of the folder
/Vis/*
#unignore the houdini files
!/Vis/*.hipnc
#!/Vis/*.hdanc
# unignore the houdini python scripts
!/Vis/*.py
# unignore the Digital asset folder ----------box2D-----------
!/Vis/DigitalAssets
#ignore all the content of the folder
/Vis/DigitalAssets/*
#unignore the *.actual assets files
!/Vis/DigitalAssets/*.hdanc
# unignore the matlab folder =========matlab========
!/matlab
# now ignore all the content of the folder
/matlab/*
#unignore the *.m files
!/matlab/*.m
# # unignore the Rwrkspc folder =========Rwrkspc========
# !/Rwrkspc
# # now ignore all the content of the folder
# /Rwrkspc/*
# #unignore the *.m files
# !/Rwrkspc/*.R
# !/Rwrkspc/*.Rproj
# .Rproj.user
# unignore the Doc folder =========Doc========
!/Doc
# now ignore all the content of the folder
/Doc/*
#unignore doxygen parameter file
!/Doc/doxy_npsat.txt
!/Doc/DoxygenLayout.xml
!/Doc/*.md
!/Doc/*.png
# unignore the Logo folder =========Logo========
!/Logo
# now ignore all the content of the folder
/Logo/*
#unignore code files
!/Logo/*.cc
!/Logo/*.m
!/Logo/*.txt
!/Logo/*.png
# unignore the example folder =========Examples========
!/examples
# ignore all the content of the folder
/examples/*
# unignore the input template file
!/examples/*.prm
# unignore the box2D example ----------box2D-----------
!/examples/box2D
#ignore all the content of the folder
/examples/box2D/*
#unignore the *.npsat files
!/examples/box2D/*.npsat
!/examples/box2D/*.png
!/examples/box2D/*.prm
# unignore the box3D example ----------box3D-----------
!/examples/box3D
#ignore all the content of the folder
/examples/box3D/*
#unignore the *.npsat files
!/examples/box3D/*.npsat
!/examples/box3D/*.md
!/examples/box3D/*.m
!/examples/box3D/*.png
# unignore the file01 example ----------file01-----------
!/examples/file01
#ignore all the content of the folder
/examples/file01/*
#unignore the *.npsat files
!/examples/file01/*.npsat
# unignore the BoxNPSAT example ----------BoxNPSAT-----------
!/examples/BoxNPSAT
#ignore all the content of the folder
/examples/BoxNPSAT/*
#unignore the *. useful files
!/examples/BoxNPSAT/*.npsat
!/examples/BoxNPSAT/*.py
!/examples/BoxNPSAT/*.m
!/examples/BoxNPSAT/*.md
!/examples/BoxNPSAT/*.png
# unignore the Tule example ----------Tule-----------
!/examples/Tule
#ignore all the content of the folder
/examples/Tule/*
#unignore the *.npsat files
!/examples/Tule/*.npsat
!/examples/Tule/*.hipnc
!/examples/Tule/*.ich
!/examples/Tule/*.ini
!/examples/Tule/*.md
!/examples/Tule/*.dat
!/examples/Tule/*.png
!/examples/Tule/*.prm
# unignore the Modesto example ---------Modesto----------
!/examples/Modesto
#ignore all the content of the folder
/examples/Modesto/*
#unignore the *.npsat files
!/examples/Modesto/*.npsat
.Rproj.user