What files should be added to .gitignore when using MATLAB and Simulink?

I would like to know which files I should add to the .gitignore file when I use MATLAB and Simulink.

Should slx.original files be added?

+4
source share
1 answer

Github has a nice gitignore repo

In particular, for Matlab projects, the template :

 ##--------------------------------------------------- ## Remove autosaves generated by the Matlab editor ## We have git for backups! ##--------------------------------------------------- # Windows default autosave extension *.asv # OSX / *nix default autosave extension *.m~ # Compiled MEX binaries (all platforms) *.mex* # Simulink Code Generation slprj/ # Session info octave-workspace # Simulink autosave extension .autosave 
+11
source

All Articles