> Alex Hornung <[email protected]> added the comment:
>
> I don't know what went wrong with the update but it's really annoying, I
> basically can't commit anymore.
Are you using an RSA identity created for SSH protocol version 1?
The recent upgrade has changed something in readconf.c near a line containing
if (options->protocol == SSH_PROTO_UNKNOWN)
which might affect you.
> It doesn't help having only the identity file or only the id_rsa file in
> ~/.ssh.
> I really need to manually do ssh -i ~/.ssh/identity and no idea how you can
> do
> that with git.
You can have an entry like this in your ~/.ssh/config:
Host leaf.dragonflybsd.org
IdentityFile ~/.ssh/identity
Cheers.