-
Checkout target branch to your local environment.
-
Try to run the project from that revision. Ideally, you should start an application from scratch to reset any cached state on your local machine (for example - cached Celery modules). In the case of the Docker-based local environment, I would recommend to:
- stop all containers:
docker stop $(docker ps -a -q)
- remove all containers:
docker rm $(docker ps -a -q)
- remove all images:
docker rmi $(docker images -q)
- stop all containers: