Git – git diff file before commit

You can use the git diff command to view the change on the uncommitted files.

Diff a file before add
git diff -- [filename]
Diff a file before commit
git diff --cached -- [filename]

Done =)

Reference: StackOverflow – Git: How to view file diff before commit

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.