Show both staged & working tree in git diff?

If you mean the changes between the working tree and your HEAD commit (i.e. both staged and unstaged changes together) this is just done with:

git diff HEAD

Leave a Comment