Fixed! Your hints got me going down the correct path :) git config --list
showed this part: url.mshttps:// microsoftit.visualstudio.com/.insteadof=https://microsoftit.visualstudio.com/ url.mshttps:// microsoftit.visualstudio.com/.insteadof=https://microsoftit.visualstudio.com/ This article: https://vsowiki.com/index.php?title=Git_Credential_Manager under "Removing the GIT Remote Helper" says "If you had the Git Remote Helper installed previously, you *must* uninstall it - as long as the Git Remote Helper is configured for a url, it will suppress the Git Credential Manager for Windows from working on that url." So I ran this: toddrob@toddrob-laptop3 MINGW64 ~ $ git config --global --unset-all url.mshttps:// microsoftit.visualstudio.com/.insteadOf Now I can clone the repo! On Mon, Mar 21, 2016 at 11:08 AM, Konstantin Khomoutov < [email protected]> wrote: > On Mon, 21 Mar 2016 10:27:18 -0700 > Todd Robertson <[email protected]> wrote: > > > Sure, here's the results. Let me know if I didn't do the syntax > > correctly. Thanks for the help! > > > > toddrob@toddrob-laptop3 MINGW64 ~ > > > > $ GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone > > > https://microsoftit.visualstudio.com/DefaultCollection/OneITVSO/_git/SI-HDC-CPT-CloudMS_Module > > > > 10:25:35.823361 git.c:344 trace: built-in: git 'clone' ' > > > https://microsoftit.visualstudio.com/DefaultCollection/OneITVSO/_git/SI-HDC-CPT-CloudMS_Module > > ' > > > > Cloning into 'SI-HDC-CPT-CloudMS_Module'... > > > > 10:25:35.870241 run-command.c:334 trace: run_command: > > 'git-remote-mshttps' 'origin' 'mshttps:// > > > microsoftit.visualstudio.com/DefaultCollection/OneITVSO/_git/SI-HDC-CPT-CloudMS_Module > > ' > > > > fatal: Unable to find remote helper for 'mshttps' > > Yup. If you'd grep the Git source code for the word "mshttps" you will > find nothing of interest. > > Something -- supposedly outside of Git itself -- manages to substitute > the "https://" scheme in the url with "mshttps://". > > In this regard, [1] looks interesting. > > So, could you please run > > git config -l > > and see if you have any settings (supposedly, > "url.<whatever>.insteadof") in your configuration? > > 1. > https://github.com/Microsoft/Git-Credential-Manager-for-Windows/issues/105 > -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
