-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
38 lines (30 loc) · 1.01 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
# Git Repository File Ignore Specifications
# B&R Automation Studio project directory files
# Ignore every Binaries/ directory (the entire folder)
**/Binaries
# Ignore everything INSIDE every Diagnosis/ directory
**/Diagnosis/**
# Ignore every Temp/ directory
**/Temp
# Ignore all .set and .isopen files
*.set
*.isopen
# Make exception for safety code
!cpu.set
# Ignore .zip files, for the moment
*.zip
# Ignore .bak files
*.bak
# Exception for Diagnosis/ sub-directories -> these won't be committed anyways
# because there are no files inside that will be committed
# Credit: Jim G. on Stack Overflow https://stackoverflow.com/a/25916709/11402416
!**/Diagnosis/**/
# Exception for specific files within Diagnosis/
#!*.tc
# ******************************************************************************
# Project specific ignore paths
# ******************************************************************************
# Save watch windows and task trace configurations
!**/Diagnosis/**/*.PVM
!**/Diagnosis/**/*.tc
# add here