我试图重命名一个文件有不同的大小写,从它之前:

git mv src/collision/b2AABB.js src/collision/B2AABB.js
fatal: destination exists, source=src/collision/b2AABB.js, destination=src/collision/B2AABB.js

正如您所看到的,Git对此进行了处理。我也尝试过使用普通的旧mv命令重命名,但Git没有接收重命名(作为重命名或作为新的未跟踪文件)。

如何将文件更改为相同名称的不同大写?我在Mac OS X v10.7.3 (Lion)上,Git 1.7.9.1,使用Z shell (zsh) 4.3.15。


当前回答

考虑到larsks的回答,你可以用“——force”命令让它工作:

 git mv --force myfile MyFile

其他回答

有时你想在一个不区分大小写的文件系统(例如在macOS或Windows上)上更改许多文件名的大写。单独执行git mv命令很快就会厌倦。为了让事情变得简单一点,我是这样做的:

将所有受影响的文件从目录移到桌面。 做一个git添加。-A删除这些文件。 将桌面上的所有文件重命名为适当的大写。 将所有文件移回原始目录。 做一个git添加..Git应该可以看到文件被重命名了。

现在您可以进行提交,表示您已经更改了文件名大写。

考虑到larsks的回答,你可以用“——force”命令让它工作:

 git mv --force myfile MyFile

Vonc的回答是完全正确的,但仍然有一个潜在的情况,你的重命名操作将无法在windows git中工作:

假设你想把dir/mypath重命名为dir/mypath:

git mv dir/mypath dir/myPath

但它没有报告:

Rename from 'dir/mypath' to 'dir/mypath' failed. Should I try again? (y/n) 

问题是bash已经无声地将命令行dir/myPath替换为dir/myPath,因为它已经检测到存在这样一个路径,但大小写不同。

解决方案是使用中间移动操作:

git mv dir/mypath dir/mypath_temp
git mv dir/mypath_temp dir/myPath

这个Python代码片段将git mv——强制目录下的所有文件都是小写的。例如,foo/Bar.js将通过git mv foo/Bar.js foo/Bar.js——force变成foo/Bar.js。

根据你的喜好修改它。我只是想分享:)

import os
import re

searchDir = 'c:/someRepo'
exclude = ['.git', 'node_modules','bin']
os.chdir(searchDir)

for root, dirs, files in os.walk(searchDir):
    dirs[:] = [d for d in dirs if d not in exclude]
    for f in files:
        if re.match(r'[A-Z]', f):
            fullPath = os.path.join(root, f)
            fullPathLower = os.path.join(root, f[0].lower() + f[1:])
            command = 'git mv --force ' + fullPath + ' ' + fullPathLower
            print(command)
            os.system(command)

你可以打开“。目录,然后编辑“配置”文件。在“[core]”下设置,设置“ignorecase = true”,你就完成了;)