vote up 3 vote down star
1

I staged a few changes to be committed; how can I see the diff of all files which are staged for the next commit? I'm aware of git status, but I'd like to see the actual diffs - not just the names of files which are staged.

I saw that the git-diff(1) man page says

git diff [--options] [--] […]

This form is to view the changes you made relative to the index (staging area for the next commit). In other words, the differences are what you could tell git to further add to the index but you still haven't. You can stage these changes by using git-add(1).

Unfortunately, I can't quite make sense of this. There must be some handy one-liner which I could create an alias for, right?

flag

2 Answers

vote up 10 vote down check

It should just be:

git diff --cached

--cached means show the changes in the cache/index (i.e. staged changes) against the current HEAD.

link|flag
--stashed is a synonym for --cached - easier to remember if you've got "index=staging area" stuck in your head. – Jefromi Oct 19 at 13:11
@Jefromi: You surely mean --staged, right? Anyway, thanks for pointing this out! This makes it easier for me (I also like to say 'git stage' instead of 'git add'). – Frerich Raabe Oct 19 at 13:27
Ouch, that was a bad typo. Yes, it's --staged. – Jefromi Oct 19 at 14:43
vote up 8 vote down

git diff

To see the changes between the working directory and the index. This shows what has been changed, but is not staged for a commit.

git diff


git diff --cached

To see the changes between the index and the HEAD. This shows what has been added to the index and staged for a commit.

git diff --cached


git diff HEAD

To see all the changes between the working directory and HEAD (which includes changes in the index). This shows all the changes since the last commit, whether or not they have been staged for commit or not.

alt text


Also:

Have a look at Scott Chacon's short screencast on Git diff

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.