-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
41 lines (35 loc) · 1.05 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
# ignoring all files except .py and .m
#
# Openmodelica generates an executable that is the main simulation file.
# The executable in GNU/Linux does not have an extension. This results in
# a scenario where git cannot ignore the executable as the .gitignore rules
# does not allow negation for files in directories that are ignored.
# Example, an easy way would be to ignore all files except the scipt files
# such as one ending in .m or .py . As mentioned above, this is not allowed
# Add a provision to manually remove the executable
# ignore for JModelica files
# including mat files (model fitting for converter harmonic model has converter
# data stored in mat files.)
Scripts/Examples/**/*.mat
Scripts/**/*.fmu
Scripts/**/*_log.txt
# ignore for OpenModelica files
Scripts/**/*.c
Scripts/**/*.h
Scripts/**/*.o
Scripts/**/*.makefile
Scripts/**/*.libs
Scripts/**/*.xml
Scripts/**/*.log
Scripts/**/*.json
Scripts/**/*.xml
Scripts/**/*.exe
# R history
.Rhistory
# misc
**/.fuse*
# temporary matlab scripts
**/tmpScript*
.vscode/
.db # thumbnail database file
*.m~