-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
25 lines (25 loc) · 1.2 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
# Ignore log files generated by the script.
# NOTE: This ignores ALL files, recursively, found in all dirs named 'logs'.
**/logs
#
#
#
# NOTE: This repo's current design can store private-data in .csv files used for templating configurations.
# To protect potential private data, you have 4 options to pick from. OPTION 1 is the default.
# Ensure only ONE Option has its appropriate fields uncommented.
# [OPTION 1] - Default
# Track changes for .csv files that likely contains a company's private data, and ignore changes to the example file used to display how to action multiple devices simultaneously.
multidevice_example.csv
# [OPTION 2]
# Track changes for .csv files that likely contains a company's private data, as well as the example file used to display how to action multiple devices simultaneously.
#
# [OPTION 3]
# Do NOT track changes for .csv files that likely contains a company's private data, but track changes of the example file used to display how to action multiple devices simultaneously.
# *.csv
# !multideviceExample.csv
# [OPTION 4]
# Do NOT track changes for any templating .csv files, nor the example file used to display how to action multiple devices simultaneously.
# *.csv
#
#
#