5
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)

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

怎么了?

4

1 回答 1

9

我认为麻烦在于您的存储库中的此文件:https ://github.com/kennethreitz/httpbin/blob/master/httpbin/templates/ ...

...不是windows下的有效文件名

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

git clone -n git://repo

然后你可以使用 asparse-checkout来获取所有文件 but ...,或者你可以只git checkout提交你真正需要的文件。

于 2012-10-23T23:20:55.797 回答