Home > database >  Difference in Git Repositories in Azure DevOps
Difference in Git Repositories in Azure DevOps

Time:02-21

I have two git repositories in a project in Azure DevOps. Why do they display differently? One has a red icon, the other a black icon. What is the difference?

Two different icons

CodePudding user response:

The black icon is a fork.

What's in a fork?

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.

See here more info.

  • Related