我想从GitHub网络界面更新分叉的回购。
我尝试了其他一些问题,但是当我使用fatal: not a git repo
git remote add upstream git://blabla
答案 0 :(得分: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
”)。