[FAQ] Git远程仓库想把目录大写改为小写,windows本地不识别的的处理
通过四步操作:
1. 先把忽略大小写设为false,即区分大小写
git config core.ignorecase false
2. 拷贝出来备份那几个大写的目录,随后分支上操作删除,提交到远程。
3. 备份出来的目录改为小写,拷贝到代码分支的目录里,提交到远程。
4.恢复成原来的设置
git config core.ignorecase true
Other:DiffEditor
通过四步操作:
1. 先把忽略大小写设为false,即区分大小写
git config core.ignorecase false
2. 拷贝出来备份那几个大写的目录,随后分支上操作删除,提交到远程。
3. 备份出来的目录改为小写,拷贝到代码分支的目录里,提交到远程。
4.恢复成原来的设置
git config core.ignorecase true
Other:DiffEditor