我是靠谱客的博主 天真芝麻,这篇文章主要介绍git文件重名名报错解决办法,现在分享给大家,希望可以做个参考。

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


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


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

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

mv AccountList.jsp AccountList2.jsp
git add -A
git commit -m "renaming"
mv AccountList2.jsp accountList.jsp
git add -A
git commit --amend -m "renamed AccountList.jsp to accountList.jsp"

然后再提交到远程即可!

最后

以上就是天真芝麻最近收集整理的关于git文件重名名报错解决办法的全部内容,更多相关git文件重名名报错解决办法内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(146)

评论列表共有 0 条评论

立即
投稿
返回
顶部