diff options
| author | tekkub <tekkub@gmail.com> | 2010-01-19 16:26:37 -0700 |
|---|---|---|
| committer | tekkub <tekkub@gmail.com> | 2010-01-19 16:26:44 -0700 |
| commit | e7b559b62d7fde31ad59c55f537ae29f56afc19f (patch) | |
| tree | 4c6dd1e42fcff7004631504f97a4d62cee755b4b /_posts/2010-01-19-multiple-keys.markdown | |
| parent | 43493783bf20a9895c02a276c5244fdb5ca4c405 (diff) | |
Adding in some more guides
Diffstat (limited to '_posts/2010-01-19-multiple-keys.markdown')
| -rw-r--r-- | _posts/2010-01-19-multiple-keys.markdown | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/_posts/2010-01-19-multiple-keys.markdown b/_posts/2010-01-19-multiple-keys.markdown new file mode 100644 index 0000000..52c5c6e --- /dev/null +++ b/_posts/2010-01-19-multiple-keys.markdown @@ -0,0 +1,37 @@ +--- +layout: default +title: Multiple SSH keys +description: How to push using different SSH keys on the same computer +categories: other +--- + +This guide assumes you have already created two keypairs and attached them to different GitHub user accounts. For this example we will be using `~/.ssh/id_rsa` attached to the user `joe` and `~/.ssh/id_rsa_client` attached to the user `client`. + +Adding your keys to SSH +======================= + +The first keypair, `~/.ssh/id_rsa`, uses a default name, so we don't need to do anything special to make SSH use this pair. The second pair, however, is not a default name. Therefore, we need to tell ssh about it so that it can use it: + +<pre class="terminal">ssh-add ~/.ssh/id_rsa_client</pre> + +If the keypair has a passphrase on it (it should!), `ssh-add` will ask you to enter the passphrase. After you have done this, the key will be available from ssh-agent so you won't have to re-enter the passphrase every time you use it. + +Configuring SSH +=============== + +Once SSH has access to both keys, you need to tell it which key to use for which server. In most cases you can assume that SSH will fall back to `~/.ssh/id_rsa` by default, but we're going to force it anyway. To begin, open `~/.ssh/config` in your favorite editor. + +<script src="http://gist.github.com/281414.js?file=config"></script> + +In short what this does is tells SSH to use the client key when connecting to the server github-client, which is really github.com. + +Using the second key +==================== + +From here on, everything is the same as everyday use except for one component, the domain name. When working on a repo owned by the primary account, we would use a command like: + +<pre class="terminal">git clone git@github.com:joe/my_repo.git</pre> + +When we want to use the second account's key, however, we need to change the domain name. Doing so will use the settings in `~/.ssh/config` to override the defaults. + +<pre class="terminal">git clone git@github-client:client/his_repo.git</pre> |
