我的存储库中有具有以下名称的文件:*.example.com.crt
问题是我不能在windows上克隆仓库。error: unable to create file *.example.com.crt (Invalid argument) Checking out files: 100% (6122/6122), done. fatal: unable to checkout working tree warning: Clone succeeded, but checkout failed.
你知道什么变通办法吗?
2条答案
按热度按时间7xzttuei1#
不幸的是,没有。Windows disallows certain characters in the filename和Git几乎支持任何东西,所以由你来管理它。我认为你最好的解决方案是简单地重命名文件。
就我个人而言,我会避免在文件名中使用
*
,因为它是一个glob字符。jdgnovmf2#
如果你的存储库在GitHub上,你可以在浏览器中直接启动Visual Studio Code IDE。只要在GitHub中打开你的存储库,然后按
.
。在浏览器中,你应该可以修改文件名中带有星号的文件。