您如何称呼制作叉子的原始仓库?

What do you call the original repo from which a fork is made?

你如何称呼创建分叉的原始仓库?

我知道 "origin" 是远程存储库的 shorthand 名称,项目最初是从中 克隆的

分叉的repo也叫origin吗?

根据 GitHub 词汇表,它简称为 "original repository"

Fork

A fork is a personal copy of another user's repository that lives on your account. > Forks allow you to freely make changes to a project without affecting the original. Forks remain attached to the original, allowing you to submit a pull request to the original's author to update with your changes. You can also keep your fork up to date by pulling in updates from the original.

来源:https://help.github.com/en/articles/github-glossary#fork

编辑 (28/10/2021)

如@ADTC 的评论所述,原始存储库现在称为“上游存储库”:

Upstream

When talking about a branch or a fork, the primary branch on the original repository is often referred to as the "upstream", since that is the main place that other changes will come in from. The branch/fork you are working on is then called the "downstream". Also called origin.

来源:https://docs.github.com/en/get-started/quickstart/github-glossary#upstream