xxxxxxxxxx
# Basic syntax:
git diff COMMIT~ COMMIT
# Where this will show you the difference between the COMMIT's ancestor
# and the COMMIT
xxxxxxxxxx
# git log to get a list of your all commits
# note : you need commit's id's , to be able to see changes :)
git log
# git diff to see the changes between commit's
git diff commit_1_id commit_2_id
# note you can use git show to :)