From 8c4e03d9df2f19fc24ec03cf2fff26bbd87947e6 Mon Sep 17 00:00:00 2001 From: Cian Bagshaw Date: Wed, 15 Feb 2023 19:38:59 +0000 Subject: [PATCH] gitignored everything, but targets Re-wrote the .gitignore file in the project root, as to ignore everything but the specified config files. Previously I had to manually ignore everything I didn't want, which was burdensome, and varied across systems. --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d509783 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# ignore everything +/* + +# except +!.config/ +!.local/bin/ +!.bashrc +!.profile +!.gitignore -- 2.20.1