ソースを参照

Changes Open Branch on Remote to better url

main
Eric Amodio 3年前
コミット
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 {

読み込み中…
キャンセル
保存