Azure DevOps 中 Git 个存储库的差异
Difference in Git Repositories in Azure DevOps
我在 Azure DevOps 的一个项目中有两个 git 存储库。为什么它们显示不同?一个有红色图标,另一个有黑色图标。有什么区别?
黑色图标是叉子。
叉子里有什么?
A fork starts with all the contents of its upstream (original)
repository. When you create a fork, you can choose whether to include
all branches or limit to only the default branch. None of the
permissions, policies, or build pipelines are applied. The new fork
acts as if someone cloned the original repository, then pushed to a
new, empty repository. After a fork has been created, new files,
folders, and branches are not shared between the repositories unless a
PR carries them along.
查看 here 更多信息。
我在 Azure DevOps 的一个项目中有两个 git 存储库。为什么它们显示不同?一个有红色图标,另一个有黑色图标。有什么区别?
黑色图标是叉子。
叉子里有什么?
A fork starts with all the contents of its upstream (original) repository. When you create a fork, you can choose whether to include all branches or limit to only the default branch. None of the permissions, policies, or build pipelines are applied. The new fork acts as if someone cloned the original repository, then pushed to a new, empty repository. After a fork has been created, new files, folders, and branches are not shared between the repositories unless a PR carries them along.
查看 here 更多信息。