给文件重命名的简便方法

给文件重命名

git mv a.py b.py
git add -A
git commit -m 'move a.py b.py
git push

基础命令 git mv

重命名时如果遇到大小写变更的,需要将git设置为区分大小写。

执行 git mv readme Rename ,也报 fatal:destination exists的错。
我执行 git config core.ignorecase false ,发现没起作用,git还是对大小写不敏感。
我再执行 git config core.ignorecase true,结果👌了。