On 2021-12-30 at 15:56:12, Jean-Louis FLOQUET wrote: > Hi, > > I use some scripts to do some batch operations (pull / push), using > rsa key and ssh-agent / ssh-add. I'm under Windows 10 (with all > updates). > When launching my script (see below, truncated : more than 100 repo), > I have to enter rsa passphrase (OK) then all push/pull are done > without any user interaction (no passphrase, no password, nothing) > All Git versions up to 2.33.0.2 are working fine, but since 2.33.1, > git asks every time the password. > I had to create a 'config' file within '.ssh' directory to support my > rsa key (too old format ?). Instructions according to > https://stackoverflow.com/questions/35233777/git-error-unable-to-negotiate-with-xx-xx-xxx-xxx-no-matching-host-key-type-fo If you're seeing this problem, then the system to which you're connecting is insecurely configured and using obsolete cryptography. You should inform the maintainers of that system of that fact and ask them to fix it. > I also have seen that some people have to add 'ssh-add -K', but it > seems to be only for MacOS. > According to release notes for 2.33.1, Git Credential Manager for > Windows has been replaced by Git Credential Manager Core, but I don't > know if it is the "root" problem, and if yes, how to fix my issue. > I would greatly appreciate any help / solution. Thanks in advance. You should run "ssh -vvv SERVER", where SERVER is the server to which you're connecting (e.g., git@github.com or whatever) and see what the output prints. That should tell you why it's falling back to a password-based configuration. Note that credential managers are only used for HTTP and HTTPS credentials and not for SSH, which is separate. -- brian m. carlson (he/him or they/them) Toronto, Ontario, CA