Adds GitLab remote link support

Adds Bitbucket remote link support
Adds Visual Studio Team Services remote link support
This commit is contained in:
Eric Amodio
2017-03-28 01:28:03 -04:00
parent ab417eadbe
commit 851522f593
5 changed files with 80 additions and 3 deletions

View File

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