Valid 701-100 Dumps shared by ExamDiscuss.com for Helping Passing 701-100 Exam! ExamDiscuss.com now offer the newest 701-100 exam dumps, the ExamDiscuss.com 701-100 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 701-100 dumps with Test Engine here:
The file index.php, which is being maintained in a git repository, was changed locally and contains an error. If the error has not been committed to the repository yet, which of the following git commands reverts the local copy of index.php to the latest committed version in the current branch?
Correct Answer: C
The command git checkout -- index.php is used to revert changes made to a file in your working directory. It replaces the local changes with the content of the file as it exists in the latest commit of the current branch. This is useful when you want to discard local changes that have not been committed yet. References: Git Documentation - git checkout