本文介绍了如何在Git中提交区分大小写的文件名更改?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我通过去掉大写第一个字母来改变一些文件名,例如 Name.jpg name.jpg 。 Git无法识别这些变化,我不得不删除这些文件并重新上传。在检查文件名的变化时,有没有办法让Git区分大小写?我没有对文件本身做任何改变。

I have changed a few files name by de-capitalize the first letter, as in Name.jpg to name.jpg. Git does not recognize this changes and I had to delete the files and upload them again. Is there a way that Git can be case-sensitive when checking for changes in file names? I have not made any changes to the file itself.

推荐答案

您可以使用:

git mv -f OldFileNameCase newfilenamecase

这篇关于如何在Git中提交区分大小写的文件名更改?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 13:24
查看更多