git _______ is used to view the specific changes introduced in a commit.
- log
- show
- diff
- inspect
The correct option is "c) diff." The git diff command is used to show the changes between the working directory and the specified commit. It provides a line-by-line comparison of what was added, modified, or deleted.
Loading...
Related Quiz
- Code reviews are often performed on the changes in a _______ before they are merged into the main branch.
- What is a Git hook?
- What is the main idea behind the Gitflow workflow model?
- When transitioning a legacy codebase to Git, it's important to set up a proper .git________ to ignore unnecessary files.
- The __________ Git Hook is executed on the client side before a push is executed.