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.
Loading...
Related Quiz
- You accidentally delete a file in your Git repository. What command would you use to restore the file from a previous commit?
- In SQL, the SELECT statement is used to _______ data from a database.
- What is a Git branch used for?
- Regularly updating software helps protect against known _______ vulnerabilities.
- _______ logs are typically human-readable and provide information about system events and errors.