git - How to see diff between working directory and staging index? -


we can see difference between repository , working directory with:

git diff 

we can see difference between repository , staging index with:

git diff --staged 

but how see difference between working directory , staging index?

actually, git diff between index , working tree

git diff head between repo , working tree.

see 365git.tumblr.com post:

git diffs


Comments

Popular posts from this blog

angularjs - Showing an empty as first option in select tag -

python - argument 2 to map() must support iteration -

How to wrap some text in a rectangle in QML? -