What is the use of ‘git log’?
Answer / Mukesh Sharma
The `git log` command displays the commit history of a repository, including the author, date, and commit message for each commit. It can be used to track changes, identify when and who made specific modifications, and navigate through the project's commit history.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why is it desirable to create an additional commit rather than amending an existing commit?
How do you find a list of files that have changed in a particular commit?
What is the command you can use to write a commit message?
What is the function of ‘git checkout’ in git?
What is ‘head’ in git?
What is GIT stash drop?
What is the difference between GIT and SVN?
What is ‘git status’ is used for?
What is the purpose of branching in GIT?
How do you configure a git repository to run code sanity checking tools right before making commits, and preventing them if the test fails?
Name a few git commands?
What is subgit?