Ver a proveniência

Changes Open Branch on Remote to better url

main
Eric Amodio há 3 anos
ascendente
cometimento
e657def760
3 ficheiros alterados com 3 adições e 3 eliminações
  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 Ver ficheiro

@ -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 Ver ficheiro

@ -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 Ver ficheiro

@ -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 {

Carregando…
Cancelar
Guardar