Git certainly does not work anymore, has to do with gnome-keyring-daemon?
Hello,
I normally always commit/push my project-files via a Jetbrains-IDE and there, vererything works. But when I tried to do it manually with git, I first got the error that I need libsecret. From there I installed gnome-keyring (I followed the arch-wiki). Now I sometimes get this warning when I start my zsh-terminal:
And when I execute git push ...
I get this error:
I really don't know how to solve this error.
I have this in my .zshenv:
if [ -n "${DESKTOP_SESSION}" ]; then
eval $(gnome-keyring-daemon --start)
export SSH_AUTH_SOCK
fi
And this in my /etc/pam.d/login:
#%PAM-1.0
auth required pam_securetty.so
auth requisite pam_nologin.so
auth include system-local-login
auth optional pam_gnome_keyring.so
account include system-local-login
session include system-local-login
session optional pam_gnome_keyring.so auto_start
Thanks for your time!