-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configured remotes not showing up in quickpick menu when opening commit on remote #1449
Comments
Yup, experiencing this. |
Can either of you post what the output of |
Certainly, it's different. But the purpose with |
So the domain and |
The |
Ah I see. That makes sense. I ran into another issue. So
I have changed the |
So for that you'll need to use the |
This issue needs more information and has not had recent activity. Please provide the missing information or it will be closed in 7 days. Thanks! |
@eamodio I am facing the same issue here. Could you please provide an example? I couldn't find it in the |
For this domain I tried
and none of them work. Could you please add documentation in the |
This issue needs more information and has not had recent activity. Please provide the missing information or it will be closed in 7 days. Thanks! |
I have the original problem (
settings.json:
|
This issue needs more information and has not had recent activity. Please provide the missing information or it will be closed in 7 days. Thanks! |
Is there some more information I can provide? I don't want this issue to be closed – it still affects me. |
This also affects me, It used to work before but doesn't anymore, what information do you need? |
FYI I tried removing my other remotes, so there's only one:
I've tried setting Also, I typically ssh into a remote server to work (through VSCode's Remote - SSH extension), but I tried working out of a local folder and had the same problem. |
Bump. Having the same issue here trying to use Bitbucket with GitLens. :-( |
Sorry for the delay and confusion around this issue. I think I've gotten to the bottom of it, and I added 2 new examples in the README that use the Can you please verify this fix in tomorrow's GitLens insiders edition? You can install the GitLens insiders edition from here. Be sure to disable/uninstall the stable version of GitLens first. |
Hey thank you so much for the fix! It works for me. However, I got an
This is because
which works, but it could match other incorrect strings as well because of the wild card.
I also found out that in JSON, you can, but are not required to escape
|
Thanks, I've fixed the example. |
Hi @eamodio , I'm having issues in a similar vein to the above users, and I think the A few questions I think might be handy to explain about the
To be a little more specific, my company's remote URLs contain spaces, represented in the URL string by If there are already docs explaining all this, if someone could link to those I'd appreciate it, I wasn't able to find them 😞 |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
I set the output level to debug, but it doesn't output anything.
Steps to Reproduce:
"gitlens.remotes": [{
"domain": "code.company.com",
"type": "Custom",
"name": "company",
"protocol": "https",
"urls": {
"repository": "https://code.company.com/packages/${repo}",
"branches": "https://code.company.com/packages/${repo}/repo-info",
"branch": "https://code.company.com/packages/${repo}/trees/heads/${branch}",
"commit": "https://code.company.com/packages/${repo}/commits/${id}",
"file": "https://code.company.com/packages/${repo}?path=${file}${line}",
"fileInBranch": "https://code.company.com/packages/${repo}/blobs/${branch}/--/${file}${line}",
"fileInCommit": "https://code.company.com/packages/${repo}/blobs/${id}/--/${file}${line}",
"fileLine": "#L${line}",
"fileRange": "#L${start}-L${end}"
}
}],
Expected: opens commit on the configured remote.
Actual: 'No auto-detected or configured remote providers found' shows up in quickpick menu as if nothing was ever configured
The text was updated successfully, but these errors were encountered: