From 1cb4062372e6522b77a43b65c437c3876e6cbb6c Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Wed, 29 Nov 2023 16:19:37 +0000 Subject: [PATCH] feat: add Git Attributes This adds a `.gitattributes` file to exclude tests and other unnecessary files from production releases. --- .gitattributes | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6e451eb --- /dev/null +++ b/.gitattributes @@ -0,0 +1,10 @@ +* text=auto + +# Path-based git attributes +# https://git-scm.com/docs/gitattributes + +# Ignore all test and documentation with "export-ignore". +/.gitattributes export-ignore +/.github export-ignore +/.gitignore export-ignore +/tests export-ignore