我想从 GitHub Web 界面更新一个分叉的 repo。
我从其他问题中尝试了一些东西,但是fatal: not a git repo
当我使用它时它给了我git remote add upstream git://blabla
我想从 GitHub Web 界面更新一个分叉的 repo。
我从其他问题中尝试了一些东西,但是fatal: not a git repo
当我使用它时它给了我git remote add upstream git://blabla
请先尝试使用 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
”)。