-
Notifications
You must be signed in to change notification settings - Fork 238
Fails to detect dev.azure.com hosted repositories #90
Comments
Can confirm. Is any workaround availiable? |
Add the following to [credential "dev.azure.com"]
authority = MSA However, it can't complete the authentication with the following error info. Fatal: java.lang.Error encountered. Details:
java.io.FileNotFoundException: https://dev.azure.com/_apis/connectiondata In my opinion, the problem is in https://github.com/Microsoft/Git-Credential-Manager-for-Mac-and-Linux/blob/7f954d807e45be91798420ba54475b007ee5862f/src/main/java/com/microsoft/alm/authentication/VsoAzureAuthority.java#L354 Azure DevOps uses |
I can also confirm. I was able to work around it by reverting back to the |
Need a fix for this ASAP. Any news? |
Same here, still waiting for a fix. How has this not been addressed yet? |
I agree that it's odd that this hasn't been fixed yet. |
Workaround without switching domain and without SSH: In my case the Git prompt was "Password for https://ondrejgr@dev.azure.com/:" So I created token name ondrejgr . And I used the generated token as a password. |
👌 changing to |
There is a strict check for detecting visualstudio.com domain. If you try to do any operation with dev.azure.com domain (now by default on Azure DevOps) the StringHelper.endsWithIgnoreCase check will fail and revert to basic authorization. You should also add dev.azure.com domain. The best approach would be to get all the domain lists from remote endpoint, but I'm not sure if such endpoint exists. I could make a pull request if you're accepting changes. |
+1 The weird thing is that I wanted to resolve this by not using GCM, just creating a PAT-token on dev.azure.com, but even when the token is valid for 1 year, the next day I need to generate a new one. I guess it has something to do with my keystore settings. But GCM always was a relieve for authenticating with visualstudio.com. I now reverted the domain name to account.visualstudio.com until this issue is resolved. |
Was struggling with this for hours until I found this issue. Changing to git remote set-url origin https://<account>.visualstudio.com/<project>/_git/<repo> |
Still a problem, FWIW. How does something like this kick around for months? |
@rgiese Obviously Microsoft don't care much about this product... it's sad, but there you go. |
Still facing this issue. |
@aaronbjork any view on when we can get a fix for this? |
This is crazy, how is this not fixed? :( |
Sorry for the lack of traction here. As several of you have discovered, you can either use the We're currently building a GCM on .NET Core that we expect to have a public preview on macOS later this month which will resolve this issue. I would still recommend SSH usage in all but very specific scenarios once that is available though. |
@jrbriggs who is this public preview for, then? Why bother implementing GCM for Mac at all? On Windows, the GCM is a much better experience than SSH or personal access tokens. GCM prompts for a password that "just works" without having to go read instructions about which URL to visit or which text file to edit. For Mac/Linux, is the underlying issue that the OS provides no easy way to display a Web View that can perform the single-sign on interaction? (In other words, those OS's expect you to compile Chromium from source code and distribute the binary with your application, and accept responsibility for any security issues that this implies?) |
For those of you on macOS, please go try GCM Core's macOS preview release |
@jrbriggs I did install preview release. And it works for azure but breaks every damn git repo I have. Bit bucket, github, gitlab you name it. How to remove it and revert the settings ? |
@kunjee17 I'm sorry to hear this. If you wouldn't mind, please could you open an issue on the GCM Core project, including a description of any error messages and collect the GCM trace logs (the issue template describes how to do this)? We would like to fix the problems you're experiencing.
To uninstall the GCM Core preview, please run the following uninstall script from Terminal:
If you installed the GCM4ML "Java GCM" (this product) via Homebrew, you'll need to re-link it, and then reconfigure it as the Git credential helper by running the following commands:
|
@mjcheetham thanks for reply. I will give it a shot. Will keep you posted here. And also file another issue. |
@mjcheetham I installed 2.0.4 version again, via brew. It started working for now. Thanks for helping. |
This Solution Works for me only change the Link in this way git remote set-url origin https://<account>@dev.azure.com/<organization>/<project>/_git/<repository> Also I have to change the Alias for the account to allow Special characters in the account name |
@Jucer74 please let me know what you mean by "Alias for the account to allow Special characters in the account name" ? i have a dot "." in my account name like ("username1.XY") to login windows. |
@Jucer74 please let me know what you mean by "Alias for the account to allow Special characters in the account name" ? i have a dot "." in my account name like ("username1.XY") to login windows. |
Sorry for my language but the same shit happens with this junk on MacOS. No prompt is displayed, it just asks for an organization password. |
Attempting to authenticate with Azure Devops hosted git repository (rebranded Visual Studio Team Services) fails and falls back to basic auth.
Looks like you haven't updated following the rebrand.
The text was updated successfully, but these errors were encountered: