We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1fbad5 commit cf795a6Copy full SHA for cf795a6
src/git/remotes/factory.ts
@@ -19,7 +19,7 @@ const defaultProviders: RemoteProviders = [
19
['dev.azure.com', (domain: string, path: string) => new AzureDevOpsRemote(domain, path)],
20
[/\bbitbucket\b/i, (domain: string, path: string) => new BitbucketServerRemote(domain, path)],
21
[/\bgitlab\b/i, (domain: string, path: string) => new GitLabRemote(domain, path)],
22
- [/\bvisualstudio.com$/i, (domain: string, path: string) => new AzureDevOpsRemote(domain, path)]
+ [/\bvisualstudio\.com$/i, (domain: string, path: string) => new AzureDevOpsRemote(domain, path)]
23
];
24
25
export class RemoteProviderFactory {
0 commit comments