Signing Git commit fails with "error: agent returned an error"
I followed this https://developer.1password.com/docs/ssh/git-commit-signing step by step on how to sign Git commits with SSH.
When I commit, 1Password shows a pop-up for approval as expected but after I authorize, commit sign fails with:
```
error: agent returned an error
fatal: failed to write commit object
```
My .gitconfig
[core]
editor = nvim
autocrlf = false
sshCommand = C:\\Windows\\System32\\OpenSSH\\ssh.exe
[credential "https://github.com"]
helper =
helper = !'C:\\Users\\hamma\\scoop\\apps\\gh\\current\\bin\\gh.exe' auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !'C:\\Users\\hamma\\scoop\\apps\\gh\\current\\bin\\gh.exe' auth git-credential
[gpg]
format = ssh
[gpg "ssh"]
program = C:\\Users\\hamma\\AppData\\Local\\1Password\\app\\8\\op-ssh-sign.exe
[commit]
gpgsign = true
[user]
signingkey = ssh-ed25519 AAA********************************************TC
email = *******************
name = Hammad
