我分叉了一个仓库并在我的本地机器上设置了所有东西。但是,当我做“远程-v'它将原始仓库显示为我的提取和推送源。我希望它来自我的分叉回购。如何在不重新开始的情况下将其更改为?然后,如何在原始仓库中添加上游?
答案 0 :(得分:1)
git remote set-url origin https://github.com/user/forkname
git remote add upstream https://github.com/maintainer/reponame
另见GitHub: Changing a remote's URL的例子。
set-url
将URL远程点更改为。
然后您就可以从上游获取,并推送到原点:
请参阅“What is the difference between origin
and upstream
in Github”。