跳至主要内容

为分支配置远程存储库

您必须配置一个指向 Git 中上游仓库的远程仓库,以便将您在分支中进行的更改与原始仓库进行同步。这还允许您将原始仓库中进行的更改与分支同步。

平台导航

  1. 打开终端终端Git Bash

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

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

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

    $ 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)