diff options
author | Aurélien Millet <aurmil@users.noreply.github.com> | 2014-12-16 11:37:27 +0100 |
---|---|---|
committer | Aurélien Millet <aurmil@users.noreply.github.com> | 2014-12-16 11:37:27 +0100 |
commit | 30b6549bfe1e2754829ec1845750ce55a55712e9 (patch) | |
tree | d8bad03596f34d4e71ea254b0ab9acfc2a0e4f35 | |
parent | d7161533f13c64dd677d367be369f4e900f5b4ea (diff) | |
download | gitignore-30b6549bfe1e2754829ec1845750ce55a55712e9.tar.gz gitignore-30b6549bfe1e2754829ec1845750ce55a55712e9.zip |
fix magento root files
without leading slash, it ignores all files with these names (cron.php,
get.php, index.php, api.php), whereveer they are
-rw-r--r-- | Magento.gitignore | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Magento.gitignore b/Magento.gitignore index ad84efe3..e0655154 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -42,14 +42,14 @@ app/etc/local.xml app/.htaccess app/locale/ app/Mage.php -cron.php +/cron.php cron.sh downloader/ errors/ favicon.ico -get.php +/get.php includes/ -index.php +/index.php index.php.sample /install.php js/blank.html @@ -93,7 +93,7 @@ media/.htaccess media/import/ media/xmlconnect/ media/catalog/product/cache/ -api.php +/api.php nbproject/ pear pear/ |