From d24c42008e0e84bb2646e0829f958efdb6e77375 Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Mon, 2 Oct 2017 22:36:04 +0200 Subject: [PATCH] Exclude non-essential files in .gitattributes (#486) * Exclude non-essential files in .gitattributes https://www.reddit.com/r/PHP/comments/2jzp6k/i_dont_need_your_tests_in_my_production/ * Add validation and .gitmodules --- .gitattributes | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..7600d2f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,19 @@ +* text=auto + +/.vscode export-ignore +/fixtures export-ignore +/tests export-ignore +/images export-ignore +/validation export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore +/.gitmodules export-ignore +/.dockerignore export-ignore +/.travis.yml export-ignore +/codecov.yml export-ignore +/Dockerfile export-ignore +/Performance.php export-ignore +/php.ini export-ignore +/phpcs.xml.dist export-ignore +/phpunit.xml.dist export-ignore +/README.md export-ignore