Update docs for generating a new SSH key for windows

I was trying to add a ssh key to my github using windows 10, and i was uncapable to procceed.
And i found that the commands `$ eval $(ssh-agent -s)` don't work on windows, but  ` $ eval `ssh-agent -s` ` works fine
This commit is contained in:
William Torres 2020-12-20 22:33:14 -03:00 коммит произвёл GitHub
Родитель 20f68bed8e
Коммит 03b0f4d42f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -127,7 +127,7 @@ Before adding a new SSH key to the ssh-agent to manage your keys, you should hav
1. Ensure the ssh-agent is running. You can use the "Auto-launching the ssh-agent" instructions in "[Working with SSH key passphrases](/articles/working-with-ssh-key-passphrases)", or start it manually:
```shell
# start the ssh-agent in the background
$ eval $(ssh-agent -s)
$ eval `ssh-agent -s`
> Agent pid 59566
```