网上比较多的说法:
1. 去除linux的保护:
git config core.protectNTFS false
2. 文件夹有冒号等特殊符号
很显然 这两点都没解决我的问题 否则也不会有这篇博客。
接着在Stack Overflow看到另一个回答:
I found that running git config core.protectNTFS false solved my issue, but only if I took some steps before and after running it. The entire process went like so:
Clone the Git repository locally; ‘cd’ into the local Git repository folder that has just been cloned; Run git reset Run git config core.protectNTFS false Run git checkout (just git checkout, no * at the end of command).
尝试过后再次checkout 会发现 错误提示变掉了:变成create某个文件夹出错 进入到项目中 发现 文件夹果然没被创建出来。
于是自己想手动创建一下该目录 aux : 结果发现在idea中会提示 invalid file name ‘aux’ 猜想难道是关键字 可是从事java多年 大家应该都没听过这个关键字,接着在windows电脑桌面 新建该文件夹 发现提示 “指定的装置名称不正确” ,在多台windows测试后发现 都是该提示 ,原来这是windows的关键字。当然,windows关键字不止’aux’这么一个 这是一个思路方向
场景还原: 团队中有人用mac/linux 取了一个windows关键字的包名 ,所以在windows中checkout失败,在mac/linux中是正常的
|