17 lines
280 B
Plaintext
17 lines
280 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/
|
|
scriptfiles/*
|
|
|
|
!pawno/include/anticheat/
|
|
pawno/include/* |