You accidentally delete a file in your Git repository. What command would you use to restore the file from a previous commit?

  • git checkout -- file-path
  • git reset --hard HEAD~1
  • git restore --source= --staged --worktree file-path
  • git revert
The correct command is git restore --source= --staged --worktree file-path where you restore the file from a specific commit using the restore command.
Add your answer
Loading...

Leave a comment

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