You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
381 B
Plaintext
23 lines
381 B
Plaintext
# Ignore everything; except .gitignore
|
|
/**
|
|
!/.gitignore
|
|
|
|
# Allow src folder, block everything except .py/.txt
|
|
!/src/
|
|
/src/**
|
|
!/src/*.py
|
|
!/src/*.txt
|
|
!/src/*.plaintext
|
|
!/src/*.ciphertext
|
|
|
|
# Allow src subfolder, block everything except .py/.txt
|
|
!/src/*/
|
|
/src/*/**
|
|
!/src/*/*.py
|
|
!/src/*/*.txt
|
|
|
|
# Allow doc folder, block everything except .tex/.pdf
|
|
!/doc/
|
|
/doc/**
|
|
!/doc/*.tex
|
|
!/doc/*.pdf |