text 生成新的SSH密钥

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 生成新的SSH密钥相关的知识,希望对你有一定的参考价值。

## Generate a new SSH key
cmd: ssh-keygen -t rsa -C "joe@creo.co.uk"

## Copy SSH
cmd: cat creo_bitbucket.pub


## Create config file inside .ssh directory
touch config

### Example
Host joegithub
	HostName github.com
	User joeboo
	IdentityFile ~/.ssh/id_rsa_github

 Host joebitbucketwork
 	HostName bitbucket.org
 	User joeboo
 	IdentityFile ~/.ssh/id_rsa_bitbucket_creo.pub


## Login
ssh -T git@joebitbucketwork

以上是关于text 生成新的SSH密钥的主要内容,如果未能解决你的问题,请参考以下文章

text 在Mac中手动生成SSH密钥

sh [生成新的SSH密钥对] #generate #key #ssh #pair #passwordless #login #authentication

如何生成SSH密钥

配置多个 git 账号的 ssh密钥

如何使用ssh-keygen生成key

Mac本地生成SSH Key 的方法