From 4c909a916cf3f622fee10a2bec70007cf815e8d7 Mon Sep 17 00:00:00 2001 From: Mahdi Yazdani Date: Sat, 7 Nov 2020 04:53:12 +0300 Subject: [PATCH] Untrack files that Git should ignore --- .gitignore | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a32768a..84c307f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,48 @@ +# Editors +project.xml +project.properties +/nbproject/private/ +.buildpath +.project +.settings* +.idea +*.sublime-project +*.sublime-workspace +.sublimelinterrc + +# Sass +.sass-cache/ + +# OS X metadata +.DS_Store + +# Windows junk +Thumbs.db + +# ApiGen +/wc-apidocs/ + +# Behat/CLI Tests +tests/cli/installer +tests/cli/composer.phar +tests/cli/composer.lock +tests/cli/composer.json +tests/cli/vendor + +# Unit tests +/tmp +/tests/bin/tmp +/tests/e2e-tests/config/local-*.json + +# Logs +/logs + +# Composer +/vendor/ + +# Compiled (Webpack) +/dist/ + # ignore everything in the root except the "wp-content" directory. !wp-content/ @@ -20,4 +65,4 @@ node_modules/ # ignore log files and databases *.log *.sql -*.sqlite +*.sqlite \ No newline at end of file