Przeglądaj źródła

Fixes #901 - better matcher for bitbucket server

main
Eric Amodio 3 lat temu
rodzic
commit
cf5a394f8e
2 zmienionych plików z 3 dodań i 2 usunięć
  1. +1
    -0
      CHANGELOG.md
  2. +2
    -2
      src/git/remotes/factory.ts

+ 1
- 0
CHANGELOG.md Wyświetl plik

@ -38,6 +38,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes [#901](https://github.com/eamodio/vscode-gitlens/issues/901) - Bitbucket Server fails when url = https://DOMAIN/stash/scm/PROJECT/REPO.git
- Fixes [#1354](https://github.com/eamodio/vscode-gitlens/issues/1354) - Stuck after merge a branch with a single quote in the name
- Fixes [#863](https://github.com/eamodio/vscode-gitlens/issues/863) - Pulling all repositories doesn't work unless built-in Git knows about the repo (requires VS Code v1.53 or later)
- Fixes [#1332](https://github.com/eamodio/vscode-gitlens/issues/1332) - Stashes created with command line don't show up in the "Stashes" section

+ 2
- 2
src/git/remotes/factory.ts Wyświetl plik

@ -38,8 +38,8 @@ const builtInProviders: RemoteProviders = [
creator: (domain: string, path: string) => new AzureDevOpsRemote(domain, path),
},
{
custom: false,
matcher: /\bbitbucket\b/i,
custom: true,
matcher: /^(.+\/(?:bitbucket|stash))\/scm\/(.+)$/i,
creator: (domain: string, path: string) => new BitbucketServerRemote(domain, path),
},
{

Ładowanie…
Anuluj
Zapisz