跳至主要内容

为分支配置远程仓库

您必须在 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)