Open jaguasch opened 5 years ago
Created a possible PR for this
Why not allowing the GitMounter to load repositories without .git
?
Unfortunately the format of AzDO git URL is different from regular Git ones, so changes are needed on the regexp and other parts of the gitmounter
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
GitMounter checks if last characters from the URL are '.git' to be enabled
Git repositories from Azure Devops can be cloned using URLs like
https://dev.azure.com/<organization>/<project>/_git/<repository name>
https://<organization>.visualstudio.com/<project>/_git/<repository name>
git clone
will work with this URLs as long as Personal Access Token (PAT) is providedgit clone https://DUMMY:<PAT>@dev.azure.com/MYORG/MYPROJECT/_git/MYREPO
So I think maybe improve GitMounter is needed or just create a Mounter for Azure Devops repositories?