22 lines
248 B
Plaintext
22 lines
248 B
Plaintext
# Ignore everything by default
|
|
*
|
|
|
|
# Allow directories
|
|
!*/
|
|
|
|
# Allow Git internals
|
|
!/.gitignore
|
|
|
|
# Allow shell scripts
|
|
!*.sh
|
|
|
|
# Allow Markdown files
|
|
!*.md
|
|
|
|
# Allow vars.example file
|
|
!vars.example
|
|
|
|
# Allow LICENSE and CHANGELOG
|
|
!LICENSE
|
|
!CHANGELOG.md
|