From a0c55f2a17e42f65a613323a80cbd97b619d2040 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Tue, 5 Mar 2013 00:53:16 +0100 Subject: [PATCH] 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 --- .gitignore | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index 8dcba4e42a..ca87d939ed 100644 --- a/.gitignore +++ b/.gitignore @@ -17,23 +17,23 @@ project.index 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 @@ Thumbs.db .idea .metadata* .settings -favicon.ico -static* -tags +/favicon.ico +/static* +/tags -- 2.20.1