-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
48 lines (29 loc) · 1.04 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
39
40
41
42
43
44
45
46
47
48
# Helpful Git notes:
#
# In Git Bash, use "git config core.autocrlf false" to avoid unwanted changes, especially to Java source files.
# You must do this for each project.
# ignore these directories
archive/
build/
dist/
DSP/
Rabbit/
Log Files/*.*
# put miscellaneous files not to be tracked in this folder
Files Not Tracked by Git/
*.lock
# ignore any jar file which might be in the executable directory
*.jar
Error Messages.txt
# ignore any zip files in the executable directory
*.zip
Java Logger File*
# ignore all ini files
# these change frequently and it is not useful to propagate the changes to each developer
# for downloading the entire project from scratch, copies of these files can be found in Golden Copies of Configuration Files Etc
# we track ini files now -- *.ini
# all golden copies are tracked so they can be propagated between developers
!Golden Copies of Configuration Files Etc/*.*
# all unit installation files are tracked so a system can be restored
!Unit Installation Files/*.*
!Unit Installation Files/XXtreme/*.*