My popular console commands for Magento 2 extensions development under Windows

I intend this page as my online cheat sheet.

###Clear cache

find var/* -type f -or -type d | grep -v 'session' | xargs rm -rf && 
rm -rf pub/static/*

###Clear cache + restart Apache

net stop "Apache2.4" && net start "Apache2.4" &&
find var/* -type f -or -type d | grep -v 'session' | xargs rm -rf && 
rm -rf pub/static/* 

###Restart Nginx

taskkill /F /IM nginx.exe 2>/dev/null && 
./nginx

###Update extensions source code from external repositories

composer update --prefer-source

###Upgrade extensions in Magento
Логическое продолжение предыдущей команды: Magento узнаёт об изменениях версий модулей, регистрирует/удаляет их, меняет схему БД.

bin/magento setup:upgrade