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

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

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