14 lines
249 B
Plaintext
14 lines
249 B
Plaintext
# Blacklist files/folders in same directory as the .gitignore file
|
|
/*
|
|
|
|
# Whitelist some files
|
|
!.gitignore
|
|
!README.md
|
|
|
|
# Ignore all files named .DS_Store or ending with .log
|
|
**/.DS_Store
|
|
**.log
|
|
|
|
# Whitelist
|
|
!scriptfiles/COD/
|
|
!pawno/include/anticheat/ |