jenkins-bot has submitted this change and it was merged. Change subject: Ignore files when exporting package ......................................................................
Ignore files when exporting package Add a .gitattributes file including instructions exclude various files from `git archive` output. The zip files created by GitHub that are used by Composer to install stable versions will honor these directives. By removing files that are not strictly needed at runtime we can minimize the footprint of the installed library for the typical user. Change-Id: Ib85fe09dfb54af4a424f909bdcc00a6965669a8c --- A .gitattributes 1 file changed, 7 insertions(+), 0 deletions(-) Approvals: BryanDavis: Looks good to me, approved jenkins-bot: Verified diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..02a9946 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,7 @@ +.gitattributes export-ignore +.gitignore export-ignore +.gitreview export-ignore +composer.json export-ignore +phpunit.xml.dist export-ignore +tests export-ignore +scripts/data export-ignore -- To view, visit https://gerrit.wikimedia.org/r/195027 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ib85fe09dfb54af4a424f909bdcc00a6965669a8c Gerrit-PatchSet: 2 Gerrit-Project: utfnormal Gerrit-Branch: master Gerrit-Owner: Legoktm <[email protected]> Gerrit-Reviewer: Brion VIBBER <[email protected]> Gerrit-Reviewer: BryanDavis <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
