How does the git blame command help in identifying changes?
- Displaying the author and last modification of each line
- Highlighting code changes over time
- Identifying the commit that last modified each line
- Displaying the commit message for each line
The 'git blame' command is used to identify the commit that last modified each line of a file. It helps in understanding the history of changes and who made those changes.
Loading...
Related Quiz
- After making several commits, a developer realizes they need to combine these commits into a single commit. What Git process should they follow?
- How do you check the current version of Git installed on your system?
- How does cherry-picking affect the commit history in Git?
- How does Git facilitate the practice of Infrastructure as Code (IaC) in DevOps?
- How do you resolve a merge conflict in Git?