Skip to content

Commit c718ba6

Browse files
committed
Fix indents
1 parent c98e398 commit c718ba6

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

content/github/authenticating-to-github/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Before adding a new SSH key to the ssh-agent to manage your keys, you should hav
8181

8282
{% mac %}
8383

84-
1. {% data reusables.command_line.start_ssh_agent %}
84+
{% data reusables.command_line.start_ssh_agent %}
8585

8686
2. If you're using macOS Sierra 10.12.2 or later, you will need to modify your `~/.ssh/config` file to automatically load keys into the ssh-agent and store passphrases in your keychain.
8787

@@ -168,7 +168,7 @@ Before adding a new SSH key to the ssh-agent to manage your keys, you should hav
168168

169169
{% linux %}
170170

171-
1. {% data reusables.command_line.start_ssh_agent %}
171+
{% data reusables.command_line.start_ssh_agent %}
172172

173173
2. Add your SSH private key to the ssh-agent. {% data reusables.ssh.add-ssh-key-to-ssh-agent %}
174174
{% data reusables.ssh.add-ssh-key-to-ssh-agent-commandline %}

content/github/authenticating-to-github/keeping-your-account-and-data-secure/reviewing-your-ssh-keys.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can delete unauthorized (or possibly compromised) SSH keys to ensure that an
3131

3232
4. Open Terminal.
3333

34-
5. {% data reusables.command_line.start_ssh_agent %}
34+
{% data reusables.command_line.start_ssh_agent %}
3535

3636
6. Find and take a note of your public key fingerprint. {% if currentVersion ver_lt "enterprise-server@3.0" %}If you're using OpenSSH 6.7 or older:
3737
```shell
@@ -109,7 +109,7 @@ You can delete unauthorized (or possibly compromised) SSH keys to ensure that an
109109
110110
4. Open Terminal.
111111
112-
5. {% data reusables.command_line.start_ssh_agent %}
112+
{% data reusables.command_line.start_ssh_agent %}
113113
114114
6. Find and take a note of your public key fingerprint. {% if currentVersion ver_lt "enterprise-server@3.0" %}If you're using OpenSSH 6.7 or older:
115115
```shell
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
Start the ssh-agent in the background.
1+
1. Start the ssh-agent in the background.
22

3-
```shell
4-
$ eval "$(ssh-agent -s)"
5-
> Agent pid 59566
6-
```
3+
```shell
4+
$ eval "$(ssh-agent -s)"
5+
> Agent pid 59566
6+
```
77

8-
Depending on your environment, you may need to use a different command. For example, you may need to use root access by running `sudo -s -H` before starting the ssh-agent, or you may need to use `exec ssh-agent bash` or `exec ssh-agent zsh` to run the ssh-agent.
8+
Depending on your environment, you may need to use a different command. For example, you may need to use root access by running `sudo -s -H` before starting the ssh-agent, or you may need to use `exec ssh-agent bash` or `exec ssh-agent zsh` to run the ssh-agent.

0 commit comments

Comments
 (0)