git – diff of current changes before committing
git diff by default shows difference between your working directory and the index (staging area for the next commit). If you have already added (staged) the changes to the staging area, git diff –staged does the job. Staging area is the data from which the next commit will be formed by git commit. P. S. … Read more