我是靠谱客的博主 天真芝麻,最近开发中收集的这篇文章主要介绍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文件重名名报错解决办法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部