Skip to content

Instantly share code, notes, and snippets.

@jsolisu
Created April 22, 2018 18:19
Show Gist options
  • Save jsolisu/fa1382ad12bb735550e31519e17cb92b to your computer and use it in GitHub Desktop.
Save jsolisu/fa1382ad12bb735550e31519e17cb92b to your computer and use it in GitHub Desktop.
Autostart ssh agent Git 2.16.2 Windows (https://git-scm.com/)
SSH_ENV=$HOME/.ssh/environment
# start the ssh-agent
function start_agent {
echo "Initializing new SSH agent..."
# spawn ssh-agent
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}"
echo succeeded
chmod 600 "${SSH_ENV}"
. "${SSH_ENV}" > /dev/null
/usr/bin/ssh-add ~/.ssh/jsolisu
}
# Source SSH settings, if applicable
if [ -f "${SSH_ENV}" ]; then
. "${SSH_ENV}" > /dev/null
/usr/bin/ssh-agent -k > /dev/null
start_agent
else
start_agent
fi
@jsolisu
Copy link
Author

jsolisu commented Apr 22, 2018

  • Create file in %USERPROFILE%<your user>
  • Change jsolisu in line 11 with your private key name.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment