Reputation: 180
In GitHub, when I have repo that contains a git submodule, the submodule is a link to the referenced git repo.
Now I have Azure DevOps there is no link, when I click on the submodule at least it shows the commit ID. Am I missing something? or is the User Experience really that bad?
Upvotes: 1
Views: 1026
Reputation: 28146
Now I have Azure DevOps there is no link, when I click on the submodule at least it shows the commit ID. Am I missing something? or is the User Experience really that bad?
Sorry but for now submodule link is not supported.
I agree that the submodule link is a good idea, so I just opened a feature request ticket here for you.
Please vote for it and track the update there. If it gets enough votes, the Product team would consider it seriously. Sorry for any inconvenience and thanks for your enthusiasm for our product.
Upvotes: 3
Reputation: 1324757
there is no link,
Check first if your Azure DevOps Git repository includes a .gitmodules
.
If it does not, then what you see is just a gitlink (special entry recording the tree SHA1 of a nested git repository)
Upvotes: 1