我在git中有一个名为100_Test_Customer_Team_abc.txt
的文件,它已被推送到远程仓库。我在名称中犯了一个错误 - 团队应该是大写字母,所以我想将其重命名为100_Test_Customer_Team_ABC.txt
。
我用过:
git mv 100_Test_Customer_Team_abc.txt 100_Test_Customer_Team_ABC.txt
但是我收到以下错误:
fatal: destination exists
那么如何重命名呢?
答案 0 :(得分:2)
你可以尝试这个解决方案:
git mv --force 100_Test_Customer_Team_abc.txt 100_Test_Customer_Team_ABC.txt
答案 1 :(得分:0)
使用 mv 命令移动它:
FillConsoleOutputAttribute()
编辑:由于您使用的是Windows,只需通过Windows资源管理器重命名该文件即可。
然后将所有更改添加为跟踪的更改mv 100_Test_Customer_Team_abc.txt 100_Test_Customer_Team_ABC.txt
。您将看到git跟踪已删除/添加为git add -A
现在你可以简单地git status
并推送到远程