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.