Skip to content

Instantly share code, notes, and snippets.

@hhoover
Created September 21, 2012 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hhoover/3761650 to your computer and use it in GitHub Desktop.
Save hhoover/3761650 to your computer and use it in GitHub Desktop.
git/Jenkins setup
apt-get -y install git
su - jenkins
git config --global user.name "Jenkins"
git config --global user.email "youremail@yourbusiness.com"
ssh-keygen -t rsa # You can use the default options here. Don't set a password.
cat .ssh/id_rsa.pub # Add this key to your Github account
ssh git@github.com # Add Github to your know_hosts file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment