Skip to content

jtlindsey/github-generateDeployKey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

github-generateDeployKey

About

Unlike Bitbucket.org, Github does not allow you to use the same public key from a server with multiple repositories. This can be inconvenient when working with multiple repositories on the same server. Creating a new user is too much of a hassel and has some limitations when making access read-only (typical access for a production server). The manual process to create and use multiple keys on the same server is also error prone.

This script addresses the last problem by:

  • generating a ssh key for a single repository
  • adding a custom configuration to the users (not global) ssh config file
  • outputs the public key for you to copy and paste as the repo deploy key
  • outputs the url for you to clone the repo to the machine

Usage

  1. Download the script to your server and save under the user that your apps interact with git under
  2. Make the script executable with this command: chmod u+x generateDeployKey.sh
  3. Generate the deploy key with this command: ./generateDeployKey.sh REPO_OWNER_NAME REPO_NAME

Example Usage

./generateDeployKey.sh yourname hello_world

Notes

  • Tested on Ubuntu Linux servers.
  • If you make a mistake with what you pass in (wrong repo name or project name), you can remove the change from your ~/.ssh/config file by deleting the most recent data in the file corresponding to "New Key Generated on...." and deleting the related .pub and private keys which will be named after whatever you passed in as parameters when you executed the script (Example: id_rsa.hello_world and id_rsa.hello_world.pub).

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages