229k views
1 vote
You have changed in your working directory, but you want to undo the changes. Nothing has been staged or committed. What next?

a. Use "git reset HEAD ..." to unstage
b. Use "git commit -m 'Undo changes'"
c. Use "git revert" to undo changes
d. Use "git checkout -- " to discard changes

User Zach
by
8.0k points

1 Answer

5 votes

Final answer:

To undo changes in a Git working directory without staging or committing, use the command git checkout followed by the file name. It discards changes for specified files.

Step-by-step explanation:

If you have made changes in your working directory and you want to undo those changes without staging or committing, you should use the command git checkout -- <file>. This command will discard changes in the working directory for the specified files. If you want to discard changes for all the files in the directory, use git checkout -- ..

The correct answer to the question is: d. Use git checkout -- to discard changes.