Thomas S.
Thomas S.

Reputation: 6345

Git: show state for all files, even unchanged/ignored

I'm in a directory that is ignored, but some files are tracked. I want to find out which are already tracked and which not.

What git command to use to see the state of every file (in this working copy directory), even if it is unchanged or ignored?

Upvotes: 1

Views: 52

Answers (1)

Moti Korets
Moti Korets

Reputation: 3748

You looking for ls-files

git ls-files -t -c -o

Upvotes: 2

Related Questions