Browse Source

Handles *.dev.azure.com remotes

main
Eric Amodio 6 years ago
parent
commit
625aa292b5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/git/remotes/factory.ts

+ 1
- 1
src/git/remotes/factory.ts View File

@ -16,7 +16,7 @@ const defaultProviders: RemoteProviders = [
['bitbucket.org', (domain: string, path: string) => new BitbucketRemote(domain, path)],
['github.com', (domain: string, path: string) => new GitHubRemote(domain, path)],
['gitlab.com', (domain: string, path: string) => new GitLabRemote(domain, path)],
['dev.azure.com', (domain: string, path: string) => new AzureDevOpsRemote(domain, path)],
[/\bdev\.azure\.com$/i, (domain: string, path: string) => new AzureDevOpsRemote(domain, path)],
[/\bbitbucket\b/i, (domain: string, path: string) => new BitbucketServerRemote(domain, path)],
[/\bgitlab\b/i, (domain: string, path: string) => new GitLabRemote(domain, path)],
[/\bvisualstudio\.com$/i, (domain: string, path: string) => new AzureDevOpsRemote(domain, path)]

||||||
x
 
000:0
Loading…
Cancel
Save