-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path.gitignore
More file actions
130 lines (112 loc) · 2 KB
/
.gitignore
File metadata and controls
130 lines (112 loc) · 2 KB
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
.DS_Store
sac_MSH/.DS_Store
Utilities_Matlab/.DS_Store
# MATLAB / Simulink ---------------------------------------------------------
# Temporary files and backups
*~
*.asv
*.bak
*.tmp
*.autosave
# MATLAB specific
*.mlappinstall
*.mlappinstallinfo
*.mltbx # MATLAB toolbox archive (optionally track if you want)
*.mltbxmanifest
*.mldatx # Simulink data dictionary (if you want to ignore local copies)
*.mlpkginstall
*.prj # generic project files (ignore if you keep projects in repo)
*.mlproj
matlab.prf # MATLAB preferences
*.mlpkg
*.mlapp # App Designer saved files (keep or ignore depending on policy)
# Compiled and binary artifacts
*.mex*
*.mexa64
*.mexmaci64
*.mexw64
*.mexw32
*.p # protected code
*.dll
*.so
*.dylib
*.exe
*.o
*.obj
# Simulink generated & build files
slprj/
*_grt_rtw/
*_ert_rtw/
*_slprj/
*.slxc
*.slxp
build/
CodeGenReport/
rtwtypes.h
rtw_*.c
rtw_*.h
# Simulink coverage and test artifacts
coverage/
coverage_*.xml
modelCoverageReport/
slcovreport/
# Auto-generated files (Simulink Designer/Requirements)
requirements/
reqs/
TraceabilityReports/
*.reqs
# Test results and logs
TestResults/
tests_results/
*.tap
*.trx
*.junit.xml
*.log
*.out
# Documentation build artifacts
docs/_build/
doc/build/
html/
*.pdf
*.chm
# MATLAB toolbox packaging / installation artifacts
*.mltbx
*.mlappinstall
# Editor / IDE
.vscode/
.idea/
*.sublime-workspace
*.sublime-project
# OS files
.DS_Store
Thumbs.db
desktop.ini
# Python interop (if used)
__pycache__/
*.pyc
*.pyo
env/
venv/
.venv/
# Node / web tooling (if used in docs)
node_modules/
dist/
build/
# Containers / CI
*.tgz
*.tar.gz
# MATLAB Online specific
.matlab_history
.matlab_crash_dump_*
# Optional: user-specific MATLAB files
history.m
preferences.mat
# Optional: large data files (enable if you don't want data in repo)
# data/
# datasets/
# *.mat
# Keep Git from trying to track generated files from builds
# (uncomment and adapt if you build artifacts locally)
# /bin/
# /lib/
# /build/