Last active
June 17, 2022 12:32
-
-
Save jmarrec/e08182f709b64f0d7fbfa51a2c2f2a7d to your computer and use it in GitHub Desktop.
.gitignore example for Simulation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ========================= | |
# eQuest | |
# ========================= | |
*.CTL | |
*.DSN | |
*.erp | |
*.lcr | |
*.lin | |
*.LOG | |
!create_baseline.log | |
*.lrp | |
*.nhk | |
*.PLO | |
*.sin | |
*.srp | |
*.STD | |
*.pdh | |
*.pdl | |
*.prr | |
*.txt | |
temp.htm | |
*.OUT | |
*.BDL | |
# Ignore the [0-9] inp files and the Baseline Design one | |
* - [0-9].inp | |
* - [0-9][0-9].inp | |
* - Baseline Design.inp | |
# Files you might want to keep (just comment those lines) | |
#*.csv | |
*.hsr | |
*.SIM | |
# ========================= | |
# OpenStudio | |
# ========================= | |
# Ignore the run folders | |
/*/run/ | |
/*/*/run/ | |
/*/*/*/run/ | |
# Ignore the run and measures test subfolders of the companion folder | |
run/ | |
tests/ | |
stderr | |
stdout | |
# ========================= | |
# EnergyPlus | |
# ========================= | |
*.audit | |
*.bnd | |
#*.csv | |
*.dxf | |
*.eio | |
*.edd | |
*.err | |
*.eso | |
*.html | |
#*.idf | |
*.mdd | |
*.mtd | |
*.mtr | |
*.mvi | |
*.rdd | |
*.rvaudit | |
#*.rvi | |
*.shd | |
*.sql | |
*.svg | |
# ========================= | |
# Python / IPython | |
# ========================= | |
*.ipynb_checkpoints | |
#*.ipynb | |
*.py | |
/LocalOnly/* | |
# Ignore Excel and Word ghost files | |
~* | |
# Windows image file caches | |
Thumbs.db | |
ehthumbs.db | |
# Folder config file | |
Desktop.ini | |
# Recycle Bin used on file shares | |
$RECYCLE.BIN/ | |
# Windows Installer files | |
*.cab | |
*.msi | |
*.msm | |
*.msp | |
# ViM | |
*.swp | |
*.swo | |
*.swn | |
# ========================= | |
# Operating System Files | |
# ========================= | |
# OSX | |
# ========================= | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must ends with two \r. | |
Icon | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment