给文件重命名的简便方法 给文件重命名git mv a.py b.pygit add -Agit commit -m 'move a.py b.pygit push 基础命令 git mv重命名时如果遇到大小写变更的,需要将git设置为区分大小写。 执行 git mv readme Rename ,也报 fatal:destination exists的错。我执行 git config core.ignorecase false ,发现没起作用,git还是对大小写不敏感。我再执行 git config core.ignorecase true,结果👌了。