Krinkle has uploaded a new change for review. https://gerrit.wikimedia.org/r/52175
Change subject: Gitignore: Clean up and ensure /includes/cache is not ignored. ...................................................................... Gitignore: Clean up and ensure /includes/cache is not ignored. In Git (at least in version 1.8.x) entries without leading slash can be matches in any subdirectory. Add a / in front of all those that should only be in the root. Change-Id: I61e2be30ac24c5b369a1d36869fbd027f197bebf --- M .gitignore 1 file changed, 19 insertions(+), 19 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core refs/changes/75/52175/1 diff --git a/.gitignore b/.gitignore index 8dcba4e..ca87d93 100644 --- a/.gitignore +++ b/.gitignore @@ -17,23 +17,23 @@ sublime-* # MediaWiki install & usage -cache -docs/js -images/[0-9a-f] -images/archive -images/deleted -images/lockdir -images/temp -images/thumb +/cache +/docs/js +/images/[0-9a-f] +/images/archive +/images/deleted +/images/lockdir +/images/temp +/images/thumb ## Extension:EasyTimeline -images/timeline -images/tmp -maintenance/.mweval_history -maintenance/.mwsql_history -maintenance/dev/data -AdminSettings.php -LocalSettings.php -StartProfiler.php +/images/timeline +/images/tmp +/maintenance/.mweval_history +/maintenance/.mwsql_history +/maintenance/dev/data +/AdminSettings.php +/LocalSettings.php +/StartProfiler.php # Building & testing node_modules/ @@ -55,6 +55,6 @@ .idea .metadata* .settings -favicon.ico -static* -tags +/favicon.ico +/static* +/tags -- To view, visit https://gerrit.wikimedia.org/r/52175 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I61e2be30ac24c5b369a1d36869fbd027f197bebf Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: Krinkle <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
