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 -

qt - Change color of QGraphicsView rubber band -

c++ - Visible files in the "Projects" View of the Qt Creator IDE if using the CMake build system -