Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

git reset -- hard with to previous commit set local and remote repository

I want to do a git reset to a previous commit. I want my local repo to reflect the changes when I go back to the old commit and I want my remote repo to do the same. How do I do this?


1 Answers

  • git reset HEAD~1
  • git stash save 'Save the commit changes just in case'
  • git push origin -f your_branch_name

Check this article out as well https://ncona.com/2011/07/how-to-delete-a-commit-in-git-local-and-remote/

DISCLAIMER: Force push is not at all safe but that is the only way I know to remove commits from remote.

like image 155
Nandu Kalidindi Avatar answered Nov 28 '25 11:11

Nandu Kalidindi



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!