How can you view a list of all the changes made in a Git repository?
- git log
- git status
- git diff
- git show
The correct option is git log. This command displays a chronological log of all commits in the repository, providing information about the commit history.
Loading...
Related Quiz
- In a project with multiple contributors, two developers have made different changes to the same file. What Git feature will help resolve this when merging?
- How can you view the changes introduced in a specific commit using Git?
- What is the purpose of the 'HEAD' in a Git repository?
- What is a common feature offered by cloud platforms like GitHub, GitLab, and Bitbucket?
- A 'detached HEAD' state in Git occurs when you check out a specific _______ instead of a branch.