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.
Loading...
Related Quiz
- _______ logging refers to the practice of correlating log entries from different services or components to trace a request's path through a distributed system.
- What does HTTPS stand for in the context of web security?
- Which principle suggests that infrastructure changes should be reversible?
- Explain the concept of cache coherency in distributed caching systems.
- What is the purpose of a database schema in database design?