Hello everyone,
We’re facing an issue with our application in production. Here’s the situation:
- Commit A: This is the past commit where the application was running fine in production.
- Current Situation: After months of pushing code, the application in production is no longer working as expected.
- Branch Setup: We have two branches:
devandprod.
devis where we push our development work.prodis the branch used for production deployments.
What I Want to Achieve:
- Deploy the state of the application from Commit A on the
prodbranch, as it is the last known working state for production
Question:
How can I revert the production deployment on the prod branch to Commit A while keeping the new commit (for troubleshooting)
I hope you understand my question