Skip to content

Commit e2f07ee

Browse files
committed
Add myAPIkey.txt to the .gitignore
Thanks to Blake Naccarato for the suggestion to add myAPIkey.txt to the .gitignore to prevent accidentally committing your personal API key to a public repository. Also add additional standard MATLAB file types that should be ignored, including autosave files, compiled files, and other cached files.
1 parent cfbb26b commit e2f07ee

File tree

1 file changed

+53
-2
lines changed

1 file changed

+53
-2
lines changed

.gitignore

+53-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,61 @@
11
# List of untracked files to ignore
22

3-
*.asv
43
*.zip
54
*.pyc
65
*/*.pyc
76
*.vs
87
*TestOutput
98
MATLAB-Live-Task-for-Python
10-
__pycache__
9+
__pycache__
10+
11+
# Prevent accidentally committing your API key
12+
myAPIkey.txt
13+
14+
# List of untracked files to ignore
15+
16+
# Autosave files
17+
*.asv
18+
*.m~
19+
*.autosave
20+
*.slx.r*
21+
*.mdl.r*
22+
23+
# MATLAB Drive
24+
*.MATLABDriveTag
25+
26+
# Compiled files
27+
*.mex*
28+
*.p
29+
30+
# Compressed files
31+
*.zip
32+
33+
# Packaged app and toolbox files
34+
*.mlappinstall
35+
*.mltbx
36+
37+
# Deployable archives
38+
*.ctf
39+
40+
# Generated helpsearch folders
41+
helpsearch*/
42+
43+
# Defined Simulink cache folder
44+
Utilities/SimulinkCache/*
45+
46+
# Standard code generation folders
47+
slprj/
48+
sccprj/
49+
codegen/
50+
51+
# Code generation file
52+
*.eep
53+
*.elf
54+
*.hex
55+
*.bin
56+
57+
# Cache files
58+
*.slxc
59+
60+
# Project settings
61+
Utilities/ProjectSettings.mat

0 commit comments

Comments
 (0)