How to rollback push that is changed on a branch
The following command will show the most recent to second last commit pushed to the branch you are working on.
1
$ git rebase -i HEAD~2
if 2 is changed to different number it will show the
change “pick” of the commit that you wanna delete to “drop” according to the instruction in the editor, and save the file.
check the log with
1
$ git log
if you checked the corresponding commit is deleted,
1
$ git push -f <remote> <branch>
Then, force push to the branch you are working on
voila