3

我想从 GitHub Web 界面更新一个分叉的 repo。

我从其他问题中尝试了一些东西,但是fatal: not a git repo当我使用它时它给了我git remote add upstream git://blabla

4

1 回答 1

1

请先尝试使用 https 地址,如GitHub FAQ中所述:

git remote add upstream https://github.com/octocat/Spoon-Knife.git
# if upstream already exist
git remote set-url upstream https://github.com/octocat/Spoon-Knife.git

并且确定这个地址使用的大小写(区分大小写,稍有错误就会给你“ not a git repo”)。

于 2012-10-15T06:02:13.993 回答