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?
Asked
Active
Viewed 1,060 times
1 Answers
3
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.

Shayki Abramczyk
- 36,824
- 16
- 89
- 114
-
Is there an easy way to convert the forked repo into a normal one? I.e., not have the relationship back to the original repo? – Donny Kwitty Feb 20 '22 at 14:14
-
Do you want to use only the regular? there are changes in the fork that doesn't exist in the original? – Shayki Abramczyk Feb 20 '22 at 16:25
-
Yes, there are changes. I don't want to have a reference to the original -- it's in another project altogether. – Donny Kwitty Feb 20 '22 at 16:41
-
You can just create a new regular repo, add it as a remote in the fork and push. – Shayki Abramczyk Feb 21 '22 at 07:20