Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to delete a commit in git remotely

If you want to delete for example the last 3 commits, run the following command to remove the changes from the file system (working tree) and commit history (index) on your local branch:

git reset --hard HEAD~3
Then run the following command (on your local machine) to force the remote branch to rewrite its history:

git push --force
 
PREVIOUS NEXT
Tagged: #delete #commit #git #remotely
ADD COMMENT
Topic
Name
2+6 =