I have, let's say 10 deployments on Heroku of a web application; I would like to rollback to the 6th release
The first step is to rollback on Heroku, then I have to git clone the web application through this command
heroku git:clone -a myapp
My question is, how to update the developpment files, locally, do I have to delete manually all the folders and the files of the app, and replaced them by the folders and files downloaded from git clone ? does the Git will remain the same ?
Many thanks