如何更改 git 存储库的获取 URL。

14 浏览
0 Comments

如何更改 git 存储库的获取 URL。

我有一个GitHub账户,我将别人的仓库fork到了我的账户中。然后我用下面的命令在本地克隆了这个仓库:

git clone https://github.com/my-github-page/repo-name

现在,由于一段时间过去了,原始仓库的所有者更新了他的仓库,但是我的仓库还落后于他的。所以,如果我想要用git pull将他的更改合并到我的仓库中。但是我还想将我的本地更改推送到我的仓库中。

简单来说,如果我运行git remote show origin命令,我会得到这个结果:

[root@localhost xxx]# git remote show origin
* remote origin
  Fetch URL: https://github.com/my-github-profile/xxx
  Push  URL: https://github.com/my-github-profile/xxx
  HEAD branch: master
  Remote branches:
    1.0          tracked
    master       tracked
    system_tests tracked
  Local branch configured for 'git pull':
    master merges with remote master
  Local ref configured for 'git push':
    master pushes to master (up to date)

现在我想将FETCH URL更改为原始仓库的地址。因为原始仓库已经更新,但是我的fork仓库还没有更新。

0