在Windows下克隆git repo时我得到"错误:无法创建文件<file> ...(是一个目录)"

Pio*_*ost 4 windows git msysgit

Z:\>git clone git://github.com/kennethreitz/httpbin.git
Cloning into 'httpbin'...
remote: Counting objects: 1073, done.
remote: Compressing objects: 100% (401/401), done.
remote: Total 1073 (delta 672), reused 1045 (delta 651)
Receiving objects: 100% (1073/1073), 114.42 KiB | 128 KiB/s, done.
Resolving deltas: 100% (672/672), done.
error: unable to create file httpbin/templates/... (Is a directory)
Run Code Online (Sandbox Code Playgroud)

git版本1.8.0.msysgit.0,Windows Vista SP2 x64

怎么了?

Sim*_*ias 8

我认为麻烦就是这个文件在你的回购:https://github.com/kennethreitz/httpbin/blob/master/httpbin/templates/ ...

... 在Windows下不是有效的文件名

为了获得repo,克隆时不检出文件(带-n标志):

git clone -n git://repo

然后你可以使用a sparse-checkout来获取所有文件但是...,你只能git checkout提交实际需要的文件.