我正在尝试遵循bottega教程,但我遇到了这个错误。我看过其他类似的问题,但没有一个答案似乎适合我。我正在使用rails 5但是当我尝试以下行时它会给我错误
git remote add origin https://github.com/MyName/my_view_tool.git
我想知道是否有人有新的如何解决这个问题? 我看到的一个常见答案如下,但它对我不起作用。
git remote set-url origin git@github.com:MyName/my_view_tool.git
答案 0 :(得分:2)
您已添加名为origin
的远程,在项目根路径中找到您的.git
文件夹并编辑config
文件夹中的.git
文件,将原始网址替换为GitHub网址,配置文件如下:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = [ORIGIN_URL_HERE]
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
答案 1 :(得分:0)
在您喜欢的编辑器中打开.git/config
并手动更改远程存储库的网址,它位于[remote "origin"]
下。