From: Cian Bagshaw Date: Wed, 15 Feb 2023 19:38:59 +0000 (+0000) Subject: gitignored everything, but targets X-Git-Url: https://tests.cianb.xyz/?a=commitdiff_plain;h=8c4e03d9df2f19fc24ec03cf2fff26bbd87947e6;p=dotFiles 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. --- 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