Improve documentation - add notice about public key
This commit is contained in:
parent
58662f9a25
commit
76fe140baa
|
|
@ -246,6 +246,18 @@ $ ssh-keygen -p -f <filename> -m pem
|
||||||
|
|
||||||
Then copy content from generated file.
|
Then copy content from generated file.
|
||||||
|
|
||||||
|
#### Public key
|
||||||
|
|
||||||
|
If you want to upload your public key to your Git server you need to extract it.
|
||||||
|
|
||||||
|
If key was generated by `openssl` then you need to type this to extract public key:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ openssl rsa -in <filename> -pubout > <filename>.pub
|
||||||
|
```
|
||||||
|
|
||||||
|
If key was generated by `ssh-keygen` the public key content is located in <filename>.pub and there is no need to extract public key
|
||||||
|
|
||||||
#### Configure SSH authentication
|
#### Configure SSH authentication
|
||||||
|
|
||||||
Configure seed job like:
|
Configure seed job like:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue