-
-
Save JanTvrdik/33df5554d981973fce02 to your computer and use it in GitHub Desktop.
ssh-agent support for Git Bash / MinGW / msys / Windows
This file contains 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
# put this in ~/.bashrc | |
export SSH_AUTH_SOCK=/tmp/.ssh-socket | |
ssh-add -l > /dev/null | |
if [ $? = 2 ]; then | |
rm -f $SSH_AUTH_SOCK | |
echo Starting new ssh-agent... | |
eval $(ssh-agent -a $SSH_AUTH_SOCK) > /dev/null | |
ssh-add && echo "ssh-agent set up successfully with the following keys:" && ssh-add -l | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
works in the .bash_profile also. Thanks!