diff options
| author | Cameron McEfee <cameron@github.com> | 2011-03-08 11:55:11 -0800 |
|---|---|---|
| committer | Cameron McEfee <cameron@github.com> | 2011-03-08 11:55:11 -0800 |
| commit | 1c3c95f4f495bcc4aad9727250b72681de384e27 (patch) | |
| tree | 7c52c8830b8a7f8624022ca35a76dba681f190b2 | |
| parent | 3deaa937076fe8e1f67b074c58c394d8ab5eda91 (diff) | |
Need the dolla dolla bill, yall
| -rw-r--r-- | _includes/ssh_setup.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/ssh_setup.markdown b/_includes/ssh_setup.markdown index debf311..ca1755a 100644 --- a/_includes/ssh_setup.markdown +++ b/_includes/ssh_setup.markdown @@ -138,13 +138,13 @@ <h4>Agent admitted failure to sign using the key</h4> <p>This one only seems to happen to Linux users. To solve it, try this:</p> <pre class="terminal bootcamp"> - <span class="codeline">ssh-add ~/.ssh/id_rsa<span>Associates your ssh key with ssh-agent</span></span> + <span class="codeline">$ ssh-add ~/.ssh/id_rsa<span>Associates your ssh key with ssh-agent</span></span> </pre> <p>If that doesn’t solve it, check out <a href="https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/201786">this thread</a>.</p> <h4>My connection was refused</h4> <p>You may be blocked by a firewall. First, you should check your ssh debug info:</p> <pre class="terminal bootcamp"> - <span class="codeline">ssh -v git@github.com<span>Prints debug info for the git@github.com SSH connection</span></span> + <span class="codeline">$ ssh -v git@github.com<span>Prints debug info for the git@github.com SSH connection</span></span> </pre> <p>Make sure it is connecting to GitHub on port 22. If it is, check to make sure your firewall is not blocking port 22.</p> <h4>When all else fails</h4> |
