-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
40 lines (26 loc) · 996 Bytes
/
.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
# 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/
# ignore any jar file which might be in the executable directory
*.jar
# ignore any zip files in the executable directory
*.zip
# ignore the test audio files in the root folder
*.wav
*.mp3
# ignore the error log
Error Log.txt
# 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/*.*