-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
121 lines (98 loc) · 1.73 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
#######################################
# Custom
#######################################
# folders
.vscode
# files
#######################################
# Python
#######################################
# 笔记中间保存文件
# Jupyter Notebook
.ipynb_checkpoints
# IPython相关配置文件
# IPython
profile_default/
ipython_config.py
# 环境文件
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder 项目文件
# Spyder project settings
.spyderproject
.spyproject
# 中间编译文件
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C 拓展文件
# C extensions
*.so
# 发行版/包相关文件
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
#######################################
# MATLAB
#######################################
## Folder
Others/
## frequent use
# Windows 默认自动保存文件
# Windows default autosave extension
*.asv
# OSX / *nix 默认自动保存文件
# OSX / *nix default autosave extension
*.m~
# 编译二进制文件,如需保存,可以注释
# Compiled MEX binaries (all platforms)
*.mex*
## maybe use
# Simulink 代码生成文件
# Simulink code generation folders
slprj/
sccprj/
# Simulink 默认自动保存文件
# Simulink autosave extension
*.autosave
# Simulink 缓存文件
# Simulink cache files
*.slxc
## seldom use
# 工具箱文件
# Packaged app and toolbox files
*.mlappinstall
*.mltbx
# 帮助文档
# Generated helpsearch folders
helpsearch*/
# Matlab 代码生成文件
# Matlab code generation folders
codegen/
# Octave相关文件
# Octave session info
octave-workspace