You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throws an error, because the url is of the form '[email protected]:user/repository-name', which isn't valid for vscode.Uri.parse and then that throws '[UriError]: Scheme contains illegal characters.'
Ex. if you clone this repo with git clone [email protected]:phoihos/vscode-git-commit-message-editor.git, then the code lens and scope suggestions break.
The text was updated successfully, but these errors were encountered:
Hi, nice work with the scopes, it works nicely.
I came across this bug with repositories cloned via ssh, where this line
vscode-git-commit-message-editor/src/gitService/remoteHelper.ts
Line 55 in 42ea0f2
url
is of the form'[email protected]:user/repository-name'
, which isn't valid forvscode.Uri.parse
and then that throws'[UriError]: Scheme contains illegal characters.'
Ex. if you clone this repo with
git clone [email protected]:phoihos/vscode-git-commit-message-editor.git
, then the code lens and scope suggestions break.The text was updated successfully, but these errors were encountered: