From 752347fa4d95f695b319455e6110a6f7e5b238f7 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 2 Jan 2023 22:23:03 +0100 Subject: [PATCH] .gitattributes: sync with current repo state A number of dev-related files/directories were not listed in the `.gitattributes` file, while these don't need to be included in the distribution archives. Fixed now. --- .gitattributes | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/.gitattributes b/.gitattributes index 79c814f5..381a15b5 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,13 +1,18 @@ # Ignore files for distribution archives. -.editorconfig export-ignore -.gitattributes export-ignore -.gitignore export-ignore -.github export-ignore +.editorconfig export-ignore +.gitattributes export-ignore +.github_changelog_generator export-ignore +.gitignore export-ignore +.remarkrc export-ignore +.yamllint export-ignore -CONTRIBUTING.md export-ignore -phpcs.xml.dist export-ignore -phpunit.xml.dist export-ignore +CODE_OF_CONDUCT.md export-ignore +CONTRIBUTING.md export-ignore +phpcs.xml.dist export-ignore +phpunit.xml.dist export-ignore # Ignore directories for distribution archives. -/tests/ export-ignore +/.github/ export-ignore +/bin/ export-ignore +/tests/ export-ignore