开发者

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

开发者 https://www.devze.com 2023-04-01 17:31 出处:网络
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)

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消