mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 01:14:40 +00:00
23 lines
391 B
Plaintext
23 lines
391 B
Plaintext
# 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
|