Git list of staged files

I staged a lot of files using git add, and now I want to see all the files I have staged, without untracked files or changed, but unstaged files.

How do I do that? When using git diff --cached I can see the changes of what I just staged. So then I tried using git status --cached, but that --cached unfortunately doesn’t work on git status.

2 Answers
2

Leave a Comment