跳至主要内容

为 fork 配置远程仓库

您必须在 Git 中配置一个指向上游仓库的远程仓库,才能同步您在 fork 中所做的更改与原始仓库。这还允许您将原始仓库中的更改同步到 fork。

平台导航

  1. 打开终端终端Git Bash.

  2. 列出当前为您的 fork 配置的远程仓库。

    $ git remote -v
    > origin  https://github.com/YOUR-USERNAME/YOUR-FORK.git (fetch)
    > origin  https://github.com/YOUR-USERNAME/YOUR-FORK.git (push)
    
  3. 指定一个新的远程上游仓库,该仓库将与 fork 同步。

    git remote add upstream https://github.com/ORIGINAL-OWNER/ORIGINAL-REPOSITORY.git
    
  4. 验证您为 fork 指定的新上游仓库。

    $ git remote -v
    > origin    https://github.com/YOUR-USERNAME/YOUR-FORK.git (fetch)
    > origin    https://github.com/YOUR-USERNAME/YOUR-FORK.git (push)
    > upstream  https://github.com/ORIGINAL-OWNER/ORIGINAL-REPOSITORY.git (fetch)
    > upstream  https://github.com/ORIGINAL-OWNER/ORIGINAL-REPOSITORY.git (push)