We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d30ef3 commit d27d0c2Copy full SHA for d27d0c2
extensions/git/src/commands.ts
@@ -452,10 +452,12 @@ export class CommandCenter {
452
// ours (current branch and commit)
453
current.detail = head.refNames.map(s => s.replace(/^HEAD ->/, '')).join(', ');
454
current.description = '$(git-commit) ' + head.hash.substring(0, 7);
455
+ current.uri = toGitUri(uri, head.hash);
456
457
// theirs
458
incoming.detail = rebaseOrMergeHead.refNames.join(', ');
459
incoming.description = '$(git-commit) ' + rebaseOrMergeHead.hash.substring(0, 7);
460
+ incoming.uri = toGitUri(uri, rebaseOrMergeHead.hash);
461
462
} catch (error) {
463
// not so bad, can continue with just uris
0 commit comments