From 34628ff3733515a5d15ed21dd71a58916bfa36f7 Mon Sep 17 00:00:00 2001 From: Bram Date: Thu, 18 Jan 2024 16:30:01 +0000 Subject: [PATCH] Create .gitattributes Add gitattributes file to prevent big files from being exported when installing package. Currently the `docs/` directory is included, which containers more than 5MB of images, unnecessarily. --- .gitattributes | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..e768e989 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,10 @@ +# Path-based git attributes +# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html + +# Ignore all test and documentation with "export-ignore". +/.gitattributes export-ignore +/.gitignore export-ignore +/docs export-ignore +/.editorconfig export-ignore +/docker-compose.yml export-ignore +/yarn.lock export-ignore