为什么你给予我这个错误?,我尝试了他们在这个堆栈溢出中回答的所有内容,没有任何来自他们所说的Git fatal: protocol 'https' is not supported
dphi5xsq1#
请使用英语。git clone只接受一个(可选2个)参数。您有4个。尝试git clone https://github.com/DarthMoulByte/unity-cache-server.git。如果你想指定包含空格的目标文件夹,你必须像这样转义空格:
git clone
git clone https://github.com/DarthMoulByte/unity-cache-server.git
git clone https://github.com/DarthMoulByte/unity-cache-server.git Unity\ CacheServe\ v6
在windows cmd上,你可以这样做:
git clone https://github.com/DarthMoulByte/unity-cache-server.git "Unity CacheServe v6"
1条答案
按热度按时间dphi5xsq1#
请使用英语。
git clone
只接受一个(可选2个)参数。您有4个。尝试
git clone https://github.com/DarthMoulByte/unity-cache-server.git
。如果你想指定包含空格的目标文件夹,你必须像这样转义空格:在windows cmd上,你可以这样做: