I’m doing a drupal9 project at work on a desktop computer and I raise it there using docksal. Started using docksal for the first time.
But at the weekend I wanted to work at home on my home computer.
I cloned the repository from github to my computer:
git clone git@github.com:user/project.git folder
And pulled up all the branches:
git branch -r | grep -v '->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done git fetch --all git pull --all
Wrote commands:
fin init fin p start
And then I imported the database:
fin db import /path/to_db/db.sql
But I’m having these problems:
- The admin panel collapsed and the tabs began to duplicate.
- The default Bartik theme is displayed instead my subtheme based on the Bootstrpap5 theme.
Why is this happening and how to solve problems? Maybe some other should be the sequence of commands? Or did any other commands need to be written at all?