Skip to content

Commit

Permalink
Create .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
HaHeho committed Nov 17, 2021
1 parent ffc0773 commit f2c0a3f
Showing 1 changed file with 122 additions and 0 deletions.
122 changes: 122 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
## Project specific

# desired recources can be added nevertheless
# `git add --force Data/...`
/Data/*

# always include .gitignore in subdirectories
!.gitignore


## Matlab specific according to
## https://github.com/github/gitignore/blob/5253281c9f6e78fec30644e3a36f137d29a3043c/Global/MATLAB.gitignore

# Windows default autosave extension
*.asv

# OSX / *nix default autosave extension
*.m~

# Compiled MEX binaries (all platforms)
*.mex*

# Packaged app and toolbox files
*.mlappinstall
*.mltbx

# Generated helpsearch folders
helpsearch*/

# Simulink code generation folders
slprj/
sccprj/

# Matlab code generation folders
codegen/

# Simulink autosave extension
*.autosave

# Simulink cache files
*.slxc

# Octave session info
octave-workspace


## MacOS specific according to
## https://github.com/github/gitignore/blob/5253281c9f6e78fec30644e3a36f137d29a3043c/Global/macOS.gitignore

# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk


## Windows specific according to
## https://github.com/github/gitignore/blob/5253281c9f6e78fec30644e3a36f137d29a3043c/Global/Windows.gitignore

# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk


## Linux specific according to
## https://github.com/github/gitignore/blob/5253281c9f6e78fec30644e3a36f137d29a3043c/Global/Linux.gitignore

*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

0 comments on commit f2c0a3f

Please sign in to comment.