blob: e8cdc9e79da2a91fd75d67ffc5f2e9aef2fe7d0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Ignore all files.
*
# Un-ignore all directories.
!*/
# Un-ignore files with an extension.
#
# In conjunction with the first two rules, this should catch extensionless
# binaries on the UNIX-like platforms.
!*.*
# But remember to ignore executables with an extension.
*.exe
*.bin
*.bat
*.pdb
*.sh
# Ignore documentation-related files.
/documentation/verify/
/documentation/all.odin-doc
|