yanyuan
2023-09-04 6fd913b0170da56dd189cd429596d4f154df7428
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
# Specifies files or directories that the Git version control system should not track.
# You can add model-specific ignore rules, e.g. to exclude large or frequently updated binary files.
# For the format of .gitignore rules, refer to the Quintiq version control documentation or search the internet; it is a standard Git feature.
 
# Do not store these settings in version control, they are machine/user specific
 
**/Settings/UserSettings/**
 
Local*.properties
 
_Main/metadata.properties
_var/_Main/metadata.properties
 
# Excel files will quickly let repository sizes grow out of control.
 
# The lock file is created/used by Quintiq components to synchronize which component can write to the model; it does not need to be in version control.
 
/Lock
 
# Files commonly left behind by merge tools or text editors (if not configured to clean up those files)
 
*.rej
*.orig
*.bak
*.tmp
*.qdataset
 
**/Settings/UserLibSettings/**
 
**/UserSettings/**
**/LibUserSettings/**
 
# ingore _var file folder
_var/
_var/_Main/metadata.properties
 
# IDE
.idea