Technical questionAccepted answer
Azure Devops Repos - Revert back to a previous commit like the recent ones never existed
cbrawl
Dec 17
0 views1
I know that you can revert back to a previous commit but it doesn't sound like the history will be gone. How can I revert back to a previous commit and make sure the commits that came after are gone forever?
1 answer
Accepted answer · original discussion
Levi Lu
PermalinkDec 18
Git reset command can achieve this.
You can run the git reset --hard command to revert back to a previous commit. Then run git push --force command to wipe out all the commits came after this commit on server.
git clone <repo_url> #clone your azure git repo to local
git checkout <branch>
git reset --hard <commithash> #revert back to a the previous commit
git push --force #push to remote server
After you run above git commands locally. You will see on azure devops git the commits coming after are gone.
0 question comments
Use comments to ask for clarification. Post a solution as an answer.
No question comments on this page.