View Git Commit Changes
Check Changes with git show
git showgit show <commit-hash>Check Changes with git diff
git diffCompare the last commit:
git diff HEAD~1 HEADCompare two specific commits:
git diff <commit-hash-1> <commit-hash-2>Show changes between the working directory & the last commit:
git diffLast updated