From 15f9b2aeba4ac0c8653afdbf55bc12d233341e3b Mon Sep 17 00:00:00 2001 From: awarnecke Date: Wed, 11 Nov 2020 12:47:47 +0100 Subject: [PATCH] ex01_crypto --- .gitignore | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a3954fd --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# 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 \ No newline at end of file