When I clone a instance, I get an开发者_StackOverflow社区 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
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.
精彩评论