git文件重名名报错解决办法

来源:互联网 发布:淘宝客服跟顾客对骂 编辑:程序博客网 时间:2024/05/17 04:05

从服务器拉下来的项目, 命名为AccountList.jsp,想改名成accountList.jsp,可是提交的时候报这个错:


Will not add file alias 'accountList.jsp' ('AccountList.jsp' already exists in index)


后来在网上找了些资料,解决方法如下:

打开命令行,进入AccountList.jsp目录,执行下列指令:

mv AccountList.jsp AccountList2.jspgit add -Agit commit -m "renaming"mv AccountList2.jsp accountList.jspgit add -Agit commit --amend -m "renamed AccountList.jsp to accountList.jsp"

然后再提交到远程即可!

0 0
原创粉丝点击