branch url

This commit is contained in:
bkellam 2025-10-29 13:44:04 -07:00
parent e50f0a2cd6
commit 79da94e5d8

View file

@ -377,6 +377,8 @@ export const getCodeHostBrowseAtBranchUrl = ({
return `${webUrl}?at=${branchName}`; return `${webUrl}?at=${branchName}`;
case 'bitbucket-server': case 'bitbucket-server':
return `${webUrl}?at=${branchName}`; return `${webUrl}?at=${branchName}`;
case 'gerrit':
return `${webUrl}/+/${branchName}`;
case 'generic-git-host': case 'generic-git-host':
return undefined; return undefined;
} }