本文主要是介绍git 提交文件不区分大小写,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
关于git不区分文件名大小写的处理
2014-10-29 18:27 by Rollen Holt, 743 阅读, 0 评论, 收藏, 编辑今天遇到了git不区分文件名大小写的问题,一开始着实郁闷了一把。
处理办法:
windows下在git中修改文件的大小写
git mv --force myfile MyFile
//如
命令 : git mv --force src/main/webapp/script/controllermodule.js src/main/webapp/script/controllerModule.js
执行后 ,敲击命令 git status
modified: src/main/webapp/static/script/controllerModule.js
deleted: src/main/webapp/static/script/controllermodule.js
效果 : gitlab上文件controllermodule.js被修改成controllerModule.js
或者
git mv -f myfile MyFile
然后commit就好了。当然也可以配置一下git:
Add ignorecase = false to [core] in .git/config;
这篇关于git 提交文件不区分大小写的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!