|
|
@ -2145,6 +2145,7 @@ export class GitHubGitProvider implements GitProvider, Disposable { |
|
|
|
const url = `https://github.com/${owner}/${repo}.git`; |
|
|
|
const domain = 'github.com'; |
|
|
|
const path = `${owner}/${repo}`; |
|
|
|
const avatarUrl = `https://avatars.githubusercontent.com/${owner}`; |
|
|
|
|
|
|
|
return [ |
|
|
|
new GitRemote( |
|
|
@ -2159,6 +2160,7 @@ export class GitHubGitProvider implements GitProvider, Disposable { |
|
|
|
{ type: GitRemoteType.Fetch, url: url }, |
|
|
|
{ type: GitRemoteType.Push, url: url }, |
|
|
|
], |
|
|
|
avatarUrl, |
|
|
|
), |
|
|
|
]; |
|
|
|
} |
|
|
|