-
打开终端终端Git Bash。
-
列出 Fork 当前配置的远程仓库。
$ git remote -v > origin https://github.com/YOUR-USERNAME/YOUR-FORK.git (fetch) > origin https://github.com/YOUR-USERNAME/YOUR-FORK.git (push)
-
指定一个新的远程上游仓库,该仓库将与 Fork 同步。
git remote add upstream https://github.com/ORIGINAL-OWNER/ORIGINAL-REPOSITORY.git
-
验证您为 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)
为 Fork 配置远程仓库
您必须配置一个指向 Git 中上游存储库的远程仓库才能同步您在 Fork 中所做的更改与原始存储库。这也允许您将原始存储库中所做的更改与 Fork 同步。