window for git 客户端默认是不区分大小写
ps: 代码在window不区分大小写 在linux 会区分大小写引起不必要错误
解决办法
1 . 修改 git config 来达到区分大小写:
git config core.ignorecase false
2 . 然后提交文件夹
git add . 提交全部工作区文件
git commit -m '区分大小写'
git push origin master
现在远程有两个文件夹 一个是http 一个是 Http
3. 因为区分了大小写 然后远程删除不需要的文件夹
git rm -r --cached Http/ 删除远程Http目录 也可以是 Http/A.txt
git commit -m "删除远程Http目录 "
git push origin master
网友评论