Просмотр исходного кода

Changes Open Branch on Remote to better url

main
Eric Amodio 3 лет назад
Родитель
Сommit
e657def760
3 измененных файлов: 3 добавлений и 3 удалений
  1. +1
    -1
      src/git/remotes/bitbucket.ts
  2. +1
    -1
      src/git/remotes/github.ts
  3. +1
    -1
      src/git/remotes/gitlab.ts

+ 1
- 1
src/git/remotes/bitbucket.ts Просмотреть файл

@ -112,7 +112,7 @@ export class BitbucketRemote extends RemoteProvider {
}
protected getUrlForBranch(branch: string): string {
return `${this.baseUrl}/commits/branch/${branch}`;
return `${this.baseUrl}/branch/${branch}`;
}
protected getUrlForCommit(sha: string): string {

+ 1
- 1
src/git/remotes/github.ts Просмотреть файл

@ -132,7 +132,7 @@ export class GitHubRemote extends RichRemoteProvider {
}
protected getUrlForBranch(branch: string): string {
return `${this.baseUrl}/commits/${branch}`;
return `${this.baseUrl}/tree/${branch}`;
}
protected getUrlForCommit(sha: string): string {

+ 1
- 1
src/git/remotes/gitlab.ts Просмотреть файл

@ -107,7 +107,7 @@ export class GitLabRemote extends RemoteProvider {
}
protected getUrlForBranch(branch: string): string {
return `${this.baseUrl}/commits/${branch}`;
return `${this.baseUrl}/tree/${branch}`;
}
protected getUrlForCommit(sha: string): string {

Загрузка…
Отмена
Сохранить