Reputation:
If I run git log -5 I get a summary of the last 5 commits. How can I view the details (specifically changes) of one of those commits using the hash output from git log?
git log -5
git log
Upvotes: 0
Views: 42
Reputation: 1133
git show <commit-id> what you are looking for.
<commit-id>
Documentation for git show
Upvotes: 1