Logging
Log
git log
Git log is a utility tool to review and read a history of everything that happens to a repository.
git log or git log --oneline
Diff
It compares the different versions of data sources.
git diff
git diff branch1 branch2 or git diff commit1 commit2
Last updated