When an Azure repo has been cloned locally with an SSH URL as opposed to HTTPS, the links to view a branch or commit on remote will not work because the URLs differ.
This is the resulting URL example:
https://ssh.dev.azure.com/v3/project_name/repo_name/repo_name/commit/commit_hash
And this is the actual URL:
https://dev.azure.com/project_name/repo_name/_git/repo_name/commit/commit_hash
Need to find a way to update the URL to match the needed structure.
When an Azure repo has been cloned locally with an SSH URL as opposed to HTTPS, the links to view a branch or commit on remote will not work because the URLs differ.
This is the resulting URL example:
https://ssh.dev.azure.com/v3/project_name/repo_name/repo_name/commit/commit_hashAnd this is the actual URL:
https://dev.azure.com/project_name/repo_name/_git/repo_name/commit/commit_hashNeed to find a way to update the URL to match the needed structure.