-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
53 lines (44 loc) · 1.54 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
49
50
51
52
53
#----------.gitignore--------------------------------------------------------------#
# #
# in order to make the repository aware of changes within this file you have to do #
# #
# git add .gitignore #
# git commit -m "<your commit message>" #
# #
#----------------------------------------------------------------------------------#
# ignore all
*
# not .gitignore
!.gitignore
# not .gitattributes
!.gitattributes
# not .gitmodules
!.gitmodules
#----------------------------------------------------------------------------------#
# list of files and folders, which are not ignored
#----------------------------------------------------------------------------------#
#
# HINT: in order to not ignore files in subdirectories the subdirectory must be in
# the list as well. If the subdirectory contains its own .gitignore file it
# suffices to add it to the paths instead of redefining each exeption for this
# subdirectory.
# EXAMPLE:
# !path
# !path/to
# !path/to/your
# !path/to/your/files
# !path/to/your/files/*.pas
# !path/to/your/files/*.dfm
# !path/to/your/files/*.dpr
# !path/to/your/files/*.rc
# !path/to/your/files/*.itl
# !path/to/your/files/*.inc
# or
# !path
# !path/to
# !path/to/your
# !path/to/your/files
# !path/to/your/files/.gitignore
!*.iscr
!*.bmp
!UNLICENSE.txt