Skip to content

Instantly share code, notes, and snippets.

@vistar
vistar / composer_update.md
Created December 9, 2021 09:34
update drupal
  1. Список доступных обновлений composer outdated "drupal/*"

  2. Проверить, что используется: composer show drupal/core-recommended

2.1 если drupal/core-recommended composer update drupal/core "drupal/core-*" --with-all-dependencies

2.2 Если нет

rm .git -rf
or
for dir in find . -name ".git"; do rm -rf $dir;
git rm --cached directory
git add directory
or
git add .
@vistar
vistar / distributions.md
Last active April 21, 2022 17:27
Drupal bookmarks

Drupal 8/9 distributions

@vistar
vistar / css.md
Last active March 27, 2022 18:34
RSS conspectus

‎‎​

@vistar
vistar / launch.json
Last active September 17, 2022 09:22
Vscode settings for xdebug in docksal
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9000,
// server -> local
"pathMappings": {
@vistar
vistar / commands.md
Last active October 15, 2022 11:53
Linux Recipes

du -s *|sort -hr|cut -f 2-|while read a;do du -hs $a;done - get sorted sizes of all subdirectories