Last active
March 6, 2019 15:11
-
-
Save squeedee/eb828bcc6a6a0276dcc3886531ec3c7a to your computer and use it in GitHub Desktop.
Script to add your github ssh key to any github requests. Great for concourse tasks with private golang modules.
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
#!/usr/bin/env bash | |
if [[ -z "${GITHUB_KEY}" ]] ; then | |
echo "GITHUB_KEY not defined" | |
exit 1 | |
fi | |
mkdir -p $HOME/.ssh | |
chmod 700 $HOME/.ssh | |
echo "${GITHUB_KEY}" > $HOME/.ssh/id_github | |
echo "Host github.com" >> $HOME/.ssh/config | |
echo " HostName github.com" >> $HOME/.ssh/config | |
echo " User git" >> $HOME/.ssh/config | |
echo " IdentityFile ~/.ssh/id_github" >> $HOME/.ssh/config | |
echo " StrictHostKeyChecking no" >> $HOME/.ssh/config | |
chmod 600 $HOME/.ssh/* | |
git config --global url."[email protected]:".insteadOf "https://github.com/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment