DEV Community

Cover image for Using YubiKey resident keys for Git and SSH on macOS
Xavier
Xavier

Posted on • Updated on

Using YubiKey resident keys for Git and SSH on macOS

Liquid syntax error: Unknown tag 'endraw'

Top comments (3)

Collapse
 
juniel_katarn profile image
J • Edited

What exactly is psub?

Are you using a different shell than macOS's default (zsh)?

% psub
zsh: command not found: psub
Enter fullscreen mode Exit fullscreen mode

That command doesn't show up in homebrew search.

Collapse
 
juniel_katarn profile image
J

Found my answer online.
psub is a fish shell command.

The following worked for me in Bash:

eval $(keychain --eval --noinherit -q)
Enter fullscreen mode Exit fullscreen mode
Collapse
 
tw3n profile image
Xavier

Thank you for pointing this out. I've updated the post to address this question for future readers!