Review your Repo
Review and view changes made in your Repo.
git status
-List new or modified files not yet committed
git log --oneline
-List commit history, with respective IDs
git diff
-Show changes to unstaged files. For changes to staged files, add --cached option
git diff commit1_ID commit2_ID
-Show changes between two commits
Last updated