当我第一次安装git时,我使用了错误的链接到存储库。
我可以看到在我的Android Studio项目的.git文件夹中找到的配置文件中有以下设置:
onBuildRead: function (moduleName, path, contents) {
if (moduleName === 'ractive') {
return contents.replace(
'DEBUG: { writable: true, value: true }',
'DEBUG: { writable: true, value: false }'
);
}
return contents;
},
我希望将其删除 https://github.com/Muuddz/AndroidApp.git 因为这个存储库不再存在了。我在Android Studio中找不到任何改变它的方法。我应该从文件中删除哪些内容以免损坏任何内容?
答案 0 :(得分:0)
如果您只想更改remote url
,那么您无法从终端进行操作,如下所示
git remote set-url origin "your remote url"
编辑:如果你想删除那个错误的网址,只需执行以下命令
git remote remove github
答案 1 :(得分:0)
使用
git remote set-url origin "https://github.com/NrkSensors/Android.git"
世界会再次开心!