我正在使用带有bitbucket的Android Studio。我更改了存储库的名称,现在当我尝试推送时,我收到消息致命错误,找不到存储库。 如何更新Android Studio Project上的新存储库名称以正确推送? 提前谢谢。
答案 0 :(得分:4)
看我的例子: 转到终端,
cd projectFolder
git remote -v (it will show previous git url)
git remote set-url origin https://username@bitbucket.org/username/newName.git
git remote -v (double check, it will show new git url)
git push (do whatever you want.)
答案 1 :(得分:1)
更新您的git遥控器,更改回购网址:https://help.github.com/articles/renaming-a-remote/
答案 2 :(得分:0)
我简单地更改了访问项目的.git文件夹中的配置文件的存储库名称。这解决了这个问题。