On Wed, Oct 11, 2023 at 02:16:27PM -0400, matthew sporleder wrote: > It gave very confusing errors! > > key::ssh-rsa ABC123 me@localhost (no new line) > error: Load key "....: invalid format? It's hard to say without seeing the whole output, but I suspect this is actually coming from ssh, not Git. We just dump the output into a tempfile and feed it to "ssh-keygen -f". Though I'd think we would see the same issue with user.signingKey in that case. So I'm not sure what's going on here (I haven't set up ssh signing to play with yet). > key::ABC123 (yes new line) > error: Couldn't load public key ...: No such file or directory? That one makes sense to me. The "ssh-rsa" part is important, because without it, ssh-keygen has no idea what format it is in. > key::ssh-rsa ABC123 me@localhost (yes new line) > works, I think This is the recommended format. > ssh-rsa ABC123 me@localhost (yes new line) > works (the script I provided) And this is the historical one. So I don't think the documentation is _wrong_ here, but I agree that it is a bit on the confusing side (especially understanding that "key::" came later, and that raw "ssh-rsa" is deprecated, which is only mentioned in user.signingKey, not gpg.ssh.defaultKeyCommand. And I'm still not sure what's going on with your no-new-line example, which I'd have expected to work. -Peff