You realize that the last few commits in your Git history are incorrect and need to be removed. What command(s) would you use to accomplish this?

  • git clean -f
  • git rebase -i HEAD~n
  • git reset --hard HEAD~n
  • git revert
The correct command is git rebase -i HEAD~n, where 'n' is the number of commits you want to go back. Interactive rebase allows you to edit, remove, or squash commits before applying them.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *