Created
February 20, 2026 04:07
-
-
Save alisade/9faeac71f3e3e4e708e540877b2f853b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://unix.stackexchange.com/questions/90853/how-can-i-run-ssh-add-automatically-without-a-password-prompt | |
| if [ ! -S ~/.ssh/ssh_auth_sock ]; then | |
| eval `ssh-agent` | |
| ln -sf "$SSH_AUTH_SOCK" ~/.ssh/ssh_auth_sock | |
| fi | |
| export SSH_AUTH_SOCK=~/.ssh/ssh_auth_sock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment