Joe
Joe

Reputation: 15311

How do I view the list of files which are being checked out

When I clone a instance, I get an output like this. How do I view the list of files which are being checked out (much similar to SVN)

remote: Counting objects: 119, done.
remote: Compressing objects: 100% (72/72), done.
Receiving objects:  27% (33/119), 1.49 MiB | 74 KiB/s

Upvotes: 1

Views: 5758

Answers (1)

Mark Longair
Mark Longair

Reputation: 467071

I don't think there's an option to git clone that does that - the verbose option doesn't cause any more output at the "Checking out files" stage. However, you can just change into the directory afterwards and type:

git ls-files

... to see every file in the working tree that was created by the clone.

Upvotes: 4

Related Questions