$ ssh-keygen -t ed25519 -C "[email protected]"
Note: If you are using a legacy system that doesn't support the Ed25519 algorithm, use:
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
drush upwd admin --password="admin"
drush upwd "admin" --password=admin
drush upwd my_username my_password
drush upwd admin 123456
drush sql-drop
drush cr
drush sql-dump > ~/my-sql-dump-file-name.sql
You can use this command to import the sql dump into your Drupal database.
drush sql-drop
drush sql-cli < ~/my-sql-dump-file-name.sql
phpcs --standard=Drupal --extensions=php,module,inc,install,test,profile,theme,css,info,txt,md,yml <PATH>
phpcbf --standard=Drupal --extensions=php,module,inc,install,test,profile,theme,css,info,txt,md,yml <PATH>
drush cdel core.extension module.<module-name>