Advanced Git Commands
1. git diff: See What’s Changedgit diff shows you the difference between various states of your code. This can be between your working directory and the staging area, or between commits.
2. git log:...